basic customization
Some checks failed
schema / schema (push) Has been cancelled
tests / tests (0, 5) (push) Has been cancelled
tests / tests (1, 5) (push) Has been cancelled
tests / tests (2, 5) (push) Has been cancelled
tests / tests (3, 5) (push) Has been cancelled
tests / tests (4, 5) (push) Has been cancelled
tests / coveralls (push) Has been cancelled

This commit is contained in:
2025-12-10 17:21:40 +03:00
parent 41c6d0e259
commit 2492347fa6
5 changed files with 55 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -10,3 +10,10 @@
//
// The variables you can override are defined in the
// `_settings.scss` and `_consul_settings.scss` files.
// $brand: #ffffff;
$main-header: #ffffff;
$brand: #000000;
$brand-secondary: #003d1e;
$topbar-background: #003d1e;
$button-background-hover: $brand;

View File

@@ -1,3 +1,4 @@
@import "consul_custom_overrides";
@import "mixins_and_variables";
@import "fonts";
@import "icons";

View File

@@ -2,3 +2,50 @@
//
// You can also create SCSS files in the app/assets/stylesheets/custom/
// folder and they will be loaded automatically.
.locale {
.locale-form {
select {
background: #000000;
color: color-pick-contrast(#000000);
}
}
}
.subnavigation {
@include breakpoint(small only) {
li {
a,
.button {
width: 100%;
}
}
}
}
.account-menu.menu {
li {
@include breakpoint(small only) {
a,
.button {
width: 100%;
}
}
.button {
background: #fbe116;
color: $black;
}
a,
.button {
font-weight: 600;
}
}
}
.auth-page {
.auth-image {
background-image: none !important;
background: $white;
border-right: 2px solid $brand-secondary;
}
}