summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/index.lg.scss2
-rw-r--r--scss/modules/index.lg.scss2
-rw-r--r--scss/modules/index.md.scss2
-rw-r--r--scss/modules/nav.lg.scss15
-rw-r--r--scss/modules/nav.md.scss11
-rw-r--r--scss/modules/nav.scss42
6 files changed, 2 insertions, 72 deletions
diff --git a/scss/index.lg.scss b/scss/index.lg.scss
index 4060f14..2f83ae9 100644
--- a/scss/index.lg.scss
+++ b/scss/index.lg.scss
@@ -1,3 +1 @@
-@use 'modules/index.lg' as *;
@use 'variables/index.lg' as *;
-
diff --git a/scss/modules/index.lg.scss b/scss/modules/index.lg.scss
deleted file mode 100644
index 56a6dd8..0000000
--- a/scss/modules/index.lg.scss
+++ /dev/null
@@ -1,2 +0,0 @@
-@use 'nav.lg' as *;
-
diff --git a/scss/modules/index.md.scss b/scss/modules/index.md.scss
index b426b71..c7b06be 100644
--- a/scss/modules/index.md.scss
+++ b/scss/modules/index.md.scss
@@ -1,4 +1,2 @@
@use 'committee.md' as *;
-@use 'nav.md' as *;
@use 'schedule.md' as *;
-
diff --git a/scss/modules/nav.lg.scss b/scss/modules/nav.lg.scss
deleted file mode 100644
index c47a685..0000000
--- a/scss/modules/nav.lg.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-.nav__bottom-row {
- flex-direction: row;
- justify-content: space-between;
- align-items: baseline;
- padding-inline: max(10%, calc((100% - var(--max-width-all-content)) / 2));
- gap: var(--spacing-inline-xs);
-}
-
-.nav__nav-links li:nth-child(4) {
- grid-column: 8 / 10;
-}
-
-.nav__nav-links li:nth-child(5) {
- grid-column: 10 / 12;
-}
diff --git a/scss/modules/nav.md.scss b/scss/modules/nav.md.scss
deleted file mode 100644
index c3f4a18..0000000
--- a/scss/modules/nav.md.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-.nav__nav-links li:nth-child(3) {
- grid-column: 5 / 8;
-}
-
-.nav__nav-links li:nth-child(4) {
- grid-column: 1 / 3;
-}
-
-.nav__nav-links li:nth-child(5) {
- grid-column: 3 / 5;
-} \ No newline at end of file
diff --git a/scss/modules/nav.scss b/scss/modules/nav.scss
index 765c44f..c4c1128 100644
--- a/scss/modules/nav.scss
+++ b/scss/modules/nav.scss
@@ -1,27 +1,5 @@
-.nav {
- & > :not(:last-child) {
- margin-block: 0 var(--margin-block-sm);
- }
-
- li {
- list-style-type: none;
- }
-}
-
-.nav__bottom-row {
- display: flex;
- flex-direction: column;
-}
-
-.nav__nav-links {
- display: grid;
- grid-template-columns: repeat(var(--grid-column-count), var(--grid-column-width));
- column-gap: var(--grid-gutter-width);
-
- li {
- list-style-type: none;
- margin: 0;
- }
+.nav > :not(:last-child) {
+ margin-block: 0 var(--margin-block-sm);
}
.nav__logo {
@@ -64,19 +42,3 @@
}
}
}
-
-.nav__breadcrumbs {
- display: flex;
- flex-wrap: wrap;
-
- li {
- min-width: max-content;
- &::before {
- content: '/'
- }
- }
-}
-
-.nav__switch-language-link {
- text-align: right;
-}