1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Added setting modal

This commit is contained in:
2020-05-30 12:54:05 +02:00
parent 5dc901a75c
commit d9dbf8e462
15 changed files with 270 additions and 54 deletions

View File

@ -50,6 +50,24 @@ body{
}
}
// Scrollbars
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: $bg-color-light;
}
::-webkit-scrollbar-thumb {
background: rgba($color: #FFF, $alpha: .5);
&:hover {
background: rgba($color: #FFF, $alpha: 1);
}
}
// Animations
@keyframes rotation {
from {
@ -84,6 +102,24 @@ body{
display: flex;
justify-content: space-between;
align-items: center;
color: #FFF;
}
}
}
.tab{
border-color: #272727;
}
.panel{
border: none;
}
.badge{
&[data-badge],
&:not([data-badge]){
&::after {
box-shadow: none;
}
}
}