mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
49 lines
662 B
SCSS
49 lines
662 B
SCSS
.history-button {
|
|
@include normalizeButton;
|
|
|
|
height: 9vh;
|
|
width: 9vh;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
left: 6vh;
|
|
|
|
border-radius: 100%;
|
|
|
|
background-color: $light-color;
|
|
|
|
svg {
|
|
@include svgStyle;
|
|
|
|
path {
|
|
fill: rgba(80, 80, 80, 0.556);
|
|
}
|
|
|
|
width: 6vh;
|
|
height: 6vh;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
animation: spin 0.4s ease-in-out;
|
|
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
|
|
} |