diff options
author | n-peugnet <n.peugnet@free.fr> | 2020-01-29 16:03:44 +0100 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2020-01-29 16:03:44 +0100 |
commit | 8be24ab190556a0402e62cc2a435bf24c182ce6e (patch) | |
tree | e6dd1fdb3d127c9b937af6bff94161414a8ef5bc | |
parent | 74fb648d199bf70a3401b38fbf5a7654fdc0f23e (diff) | |
download | wcms-8be24ab190556a0402e62cc2a435bf24c182ce6e.tar.gz wcms-8be24ab190556a0402e62cc2a435bf24c182ce6e.zip |
fix: css width and scrollable submenus
-rw-r--r-- | assets/css/home.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index a801ba8..b2be8dd 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -52,6 +52,12 @@ aside .submenu { border: solid 1px dimgrey; width: 20%; max-width: 280px; + max-height: 85%; + overflow-y: auto; +} + +aside .submenu * { + max-width: 100%; } |