update empty string to null

This commit is contained in:
2025-07-28 18:17:52 +03:00
parent 6d71c60550
commit 462ed2b671
33 changed files with 369 additions and 242 deletions

View File

@@ -1,10 +1,18 @@
// app global css in SCSS form
.text-brand {
color: $green-14 !important;
color: #27A7E7 !important;
}
.bg-brand {
background: $green-14 !important;
background: #27A7E7 !important;
}
.text-brand2 {
color: #F36D3A !important;
}
.bg-brand2 {
background: #F36D3A !important;
}
$base-width: 100;
@@ -65,3 +73,12 @@ body {
border-bottom: 1px solid grey;
margin: auto;
}
@font-face {
font-family: 'myFont';
src: url(./fonts/OpenSans-Regular.woff2);
}
button[disabled] {
background-color: $grey-5 !important;
}