Finish settings page

This commit is contained in:
inpsyde-maticluznar 2024-11-13 17:29:11 +01:00
parent e72cc8a213
commit b23a9a0fab
No known key found for this signature in database
GPG key ID: D005973F231309F6
20 changed files with 692 additions and 433 deletions

View file

@ -7,7 +7,7 @@
}
}

@mixin hide-input-field(){
@mixin hide-input-field() {
width: 100%;
height: 100%;
position: absolute;
@ -18,7 +18,7 @@
border-radius: 0;
}

@mixin fake-input-field($border-radius:0){
@mixin fake-input-field($border-radius:0) {
width: 20px;
height: 20px;
border: 1px solid $color-gray-600;
@ -27,8 +27,19 @@
border-radius: $border-radius;
}

@mixin small-button{
@mixin small-button {
border-radius: 2px;
padding: 6px 12px;
@include font(13, 20, 400);
}

@mixin vertical-layout-event-gap($gap:0) {
display: flex;
flex-direction: column;
gap: $gap;
}

@mixin horizontal-layout-even-gap($gap:0) {
display: flex;
gap: $gap;
}