Importation des concours
This commit is contained in:
50
public/assets/sass/_body.scss
Normal file
50
public/assets/sass/_body.scss
Normal file
@@ -0,0 +1,50 @@
|
||||
body {
|
||||
font-family: $fontFamily;
|
||||
font-size: $fontSize;
|
||||
line-height: $lineHeight;
|
||||
letter-spacing: $letterSpacing;
|
||||
color: $colorText;
|
||||
background: $colorBackground;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
// close all the scroll bars
|
||||
::-webkit-scrollbar {
|
||||
width: 0;
|
||||
}
|
||||
|
||||
// Selection color
|
||||
::selection {
|
||||
background: rgba($colorPrimary, 0.3);
|
||||
}
|
||||
|
||||
// default link options
|
||||
a {
|
||||
transition: none;
|
||||
color: $colorPrimary;
|
||||
outline: 0 !important;
|
||||
text-decoration: none;
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0 !important;
|
||||
color: $colorPrimary;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
button {
|
||||
outline: 0 !important;
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Safearea
|
||||
$safeBottom: env(safe-area-inset-bottom);
|
||||
$safeTop: env(safe-area-inset-top);
|
||||
Reference in New Issue
Block a user