react_size_chart
Version:
Vestfoy smart size charts react package
82 lines (69 loc) • 1.31 kB
CSS
body {
font-size: 14px;
}
.buttonLogo {
content:url("meter.png");
text-align: center;
/* width: 15px; */
}
.buttonLogoDark {
content:url("meter-dark.png");
text-align: center;
/* width: 15px; */
}
.buttonLogoPosition {
position: relative;
margin-right: 5px;
}
#vestofy-chart-modal .modal-dialog {
width: auto;
}
/* Fullscreen modal on mobile only */
@media (max-width: 576px) {
#vestofy-chart-modal .modal-dialog {
margin: 0;
width: 100%;
max-width: 100%;
height: 100%;
}
#vestofy-chart-modal .modal-content {
height: 100vh;
border-radius: 0;
}
#vestofy-chart-modal .modal-body {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
}
/* Larger close button (thumb-friendly) */
@media (max-width: 576px) {
#vestofy-chart-modal .close {
font-size: 2rem;
}
}
.loader {
width: 80px;
height: 80px;
border-radius: 100%;
position: relative;
margin: 0 auto;
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #4c4c4c; /* Blue */
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}