diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-01-07 21:05:12 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-07 21:05:12 +0100 |
commit | 65ee79c41b0f980e312af67b0f9e5ee5770eed8d (patch) | |
tree | 486df02098721e1e4da4e5f8d63b5d71cd2a24b1 | |
parent | 478587d1442b644f8f78a529dbb8ada1fc27f601 (diff) | |
download | wcms-65ee79c41b0f980e312af67b0f9e5ee5770eed8d.tar.gz wcms-65ee79c41b0f980e312af67b0f9e5ee5770eed8d.zip |
home css display working fill availiable flex
-rw-r--r-- | assets/css/home.css | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index 8854ee3..1b61b25 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -2,12 +2,19 @@ box-sizing: border-box; } + +div#flex { + display: flex; + height: -webkit-fill-available; +} + div#options { - float: left; + min-width: 180px; + overflow-y: auto; } div#main { - display: inline-block; + overflow: auto; } body { @@ -246,4 +253,3 @@ main.user table form { } - |