39 lines
489 B
SCSS
39 lines
489 B
SCSS
|
// ----------------------------------------------
|
||
|
// Reboot Style
|
||
|
// ----------------------------------------------
|
||
|
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: $primary;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
:focus {
|
||
|
outline: 0;
|
||
|
box-shadow: none !important;
|
||
|
}
|
||
|
|
||
|
.cursor-pointer {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.calendar-events {
|
||
|
cursor: move;
|
||
|
}
|
||
|
|
||
|
.object-fit-cover {
|
||
|
object-fit: cover;
|
||
|
}
|