changed primary color definitions to initial color definitions, added class for initial color/background styling

This commit is contained in:
Florian Scholdei
2019-09-12 11:32:51 +02:00
parent d2350418ec
commit d40bf94bd3

View File

@@ -2,21 +2,36 @@
@import "bulma/sass/utilities/functions";
$blue: #33b2e8;
$cyan: $blue;
$green: #00c79b;
$mint: #11dfd0;
$info: $blue;
$success: #00c79b;
.is-ellipsis-overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.is-word-break {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
word-break: break-all;
}
.has-rounded-border {
border-radius: 0.25rem;
}
.has-text-initial {
color: initial;
}
.has-background-initial {
background-color: initial;
}
.is-full-width {
width: 100%;
}
@@ -28,14 +43,6 @@ $success: #00c79b;
padding: 0 0 0 3.8em !important;
}
.is-word-break {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
word-break: break-all;
}
.main {
min-height: calc(100vh - 260px);
}