aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Header.scss
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Header.scss')
-rw-r--r--frontend/src/components/Header.scss17
1 files changed, 13 insertions, 4 deletions
diff --git a/frontend/src/components/Header.scss b/frontend/src/components/Header.scss
index fff28e6..c6a88b7 100644
--- a/frontend/src/components/Header.scss
+++ b/frontend/src/components/Header.scss
@@ -1,16 +1,18 @@
@import "../colors";
.header {
- height: 80px;
- padding: 15px 30px;
+ padding: 15px;
- > .row {
+ .header-content {
+ display: flex;
+ width: 100%;
+ padding: 0 10px;
background-color: $color-primary-0;
}
.header-title {
width: 200px;
- margin: 5px 0 5px -5px;
+ margin: 5px 0 5px 0;
}
.header-buttons {
@@ -24,6 +26,7 @@
}
.filters-bar {
+ flex: 1;
padding: 3px 0;
.filter,
@@ -38,4 +41,10 @@
border-radius: 5px;
}
}
+
+ @media screen and (max-width: 1530px) {
+ &.configured .header-title {
+ display: none;
+ }
+ }
}