refactor: add nif to navigation

This commit is contained in:
Carlos Valente
2024-10-19 10:41:26 +02:00
committed by Carlos Valente
parent ab847a324b
commit dd4a165b08
8 changed files with 85 additions and 7 deletions
+8
View File
@@ -21,3 +21,11 @@
overflow: hidden;
text-overflow: ellipsis;
}
@mixin rotate-fourty-five {
transform: rotate(45deg);
}
.fourtyfive {
@include rotate-fourty-five;
}
+1 -1
View File
@@ -30,4 +30,4 @@ $external-color: rgba(white, 85%); // --external-color-override
// properties of other timers (clock and countdown)
$timer-label-size: clamp(16px, 1.5vw, 24px);
$timer-value-size: clamp(2rem, 3.5vw, 3.5rem);
$timer-value-size: clamp(2rem, 3.5vw, 3.5rem);
+2
View File
@@ -4,6 +4,8 @@ export const ontimeDrawer = {
backgroundColor: '#202020', // $gray-1250
},
body: {
display: 'flex',
flexDirection: 'column',
color: '#fefefe', // $gray-50
backgroundColor: '#202020', // $gray-1250
},