mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
49 lines
795 B
SCSS
49 lines
795 B
SCSS
.go-down {
|
|
height: 8vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
|
|
svg {
|
|
height: 6vh;
|
|
width: 6vh;
|
|
|
|
cursor: pointer;
|
|
|
|
path {
|
|
fill: rgb(170, 170, 170);
|
|
// CREDITS TO https://stackoverflow.com/a/49627345
|
|
}
|
|
}
|
|
}
|
|
|
|
.go-down-separator-line {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
hr {
|
|
height: 1px;
|
|
width: 75%;
|
|
|
|
border: none;
|
|
border-top: 1px solid rgb(184, 184, 184);
|
|
}
|
|
}
|
|
|
|
.go-down-separator-line.dark-mode-component {
|
|
background-color: $main-color-dark;
|
|
}
|
|
|
|
.go-down.dark-mode-component {
|
|
|
|
background-color: $main-color-dark;
|
|
}
|
|
|
|
.go-down.dark-mode-component#go-to-credits {
|
|
|
|
background-color: $second-color-dark;
|
|
} |