diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-08-18 12:41:10 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-08-18 12:41:10 +0200 |
| commit | 47b70419b3cb8fad1d797c863d17a0303b5d7724 (patch) | |
| tree | 0f15850d9d14e011a5ad43315796c4002935e16c /assets/css/partials/header-separator.css | |
| parent | 859e07942e3a3b4074513627a60513f0fa624154 (diff) | |
| download | flevum-47b70419b3cb8fad1d797c863d17a0303b5d7724.tar.gz | |
Fix mobile menu not showing top and bottom strokes
Diffstat (limited to 'assets/css/partials/header-separator.css')
| -rw-r--r-- | assets/css/partials/header-separator.css | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/assets/css/partials/header-separator.css b/assets/css/partials/header-separator.css index e1e5358..3c02cd1 100644 --- a/assets/css/partials/header-separator.css +++ b/assets/css/partials/header-separator.css @@ -1,28 +1,25 @@ -.header-content-separator { - position: relative; - margin: 40px auto; +.header-content-separator, +.header-content-separator:before, +.header-content-separator:after { width: 4px; height: 4px; border-radius: 50%; background: var(--grey-ccc); } +.header-content-separator { + position: relative; + margin: 40px auto; +} + .header-content-separator:before { position: absolute; left: -8px; - width: 4px; - height: 4px; - border-radius: 50%; - background: var(--grey-ccc); content: ""; } -.header-content-separator::after { +.header-content-separator:after { position: absolute; left: 8px; - width: 4px; - height: 4px; - border-radius: 50%; - background: var(--grey-ccc); content: ""; } |
