-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): responsive ui for tablets (#336)
* fix(ui): responsive ui for tablets * fix(ui): fixup! responsive ui for tablets * fix(ui): fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets * fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for tablets
- Loading branch information
1 parent
5b90960
commit 646f23e
Showing
77 changed files
with
1,565 additions
and
1,490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@mixin mobile { | ||
@media(max-width:575px){ | ||
@content; | ||
} | ||
} | ||
|
||
@mixin tablet { | ||
@media(max-width:768px){ | ||
@content; | ||
} | ||
} | ||
|
||
@mixin desktop { | ||
@media(max-width:1023px){ | ||
@content; | ||
} | ||
} | ||
|
||
@mixin widescreen { | ||
@media(max-width:1216px){ | ||
@content; | ||
} | ||
} | ||
|
||
@mixin fullhd { | ||
@media(max-width:1408px){ | ||
@content; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// bulma variables | ||
$text: hsl(0, 0%, 0%); | ||
$text-light: hsl(270, 50%, 48%); | ||
$text-strong: hsl(270, 50%, 21%); | ||
$footer-background-color: transparent; | ||
$footer-padding: 3rem 1.5rem 3rem; | ||
$navbar-item-img-max-height: 40px; | ||
$navbar-item-hover-color: hsl(0, 0%, 0%); | ||
$file-cta-color: hsl(270, 50%, 48%); | ||
$family-primary: "Inter", sans-serif; | ||
$navbar-item-img-max-height: 70px; | ||
$card-radius: 12px; | ||
$box-radius: 12px; | ||
$table-head-cell-border-width: 0 0 0; | ||
$table-cell-border-width: 0px 0px 1px; | ||
$table-foot-cell-border-width: 1px 0px 0px; | ||
$modal-content-width: 432px; | ||
|
||
// BudgetingKid variables | ||
$bk-color: $text-light; | ||
$bk-background-color: hsl(270, 95%, 98%); | ||
$bk-dark-grey: hsl(0, 0%, 35%); | ||
$bk-grey: hsl(0, 0%, 68%); |
Oops, something went wrong.