72 lines
1.0 KiB
SCSS
72 lines
1.0 KiB
SCSS
@import "@Themes/constants.scss";
|
|
@import "@Themes/fonts.scss";
|
|
@import "@Themes/variables.scss";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-size: inherit;
|
|
background-position: top center;
|
|
font-size: 0px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
input {
|
|
font-size: 18px;
|
|
/* Firefox */
|
|
-moz-appearance: textfield;
|
|
|
|
/* Chrome */
|
|
&::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Opéra*/
|
|
&::-o-inner-spin-button {
|
|
-o-appearance: none;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
::placeholder {
|
|
font-size: 14px;
|
|
}
|
|
|
|
*:focus {
|
|
outline: none;
|
|
}
|
|
|
|
a,
|
|
a:visited {
|
|
color: initial;
|
|
text-decoration: none !important;
|
|
opacity: 1;
|
|
transition: opacity 0.15s ease-in-out;
|
|
will-change: opacity;
|
|
}
|
|
|
|
a:hover {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.react-select__input-container {
|
|
color: black !important;
|
|
font-weight: normal !important;
|
|
}
|
|
|
|
.react-select__menu-notice {
|
|
font-size: 18px;
|
|
font-family: Inter;
|
|
}
|
|
|
|
.Toastify__toast-body {
|
|
font-size: 14px;
|
|
font-family: "Inter", sans-serif !important;
|
|
}
|