diff options
author | Miguel Angel Mulero Martinez <migmul@gmail.com> | 2022-04-30 10:36:22 +0200 |
---|---|---|
committer | Miguel Angel Mulero Martinez <migmul@gmail.com> | 2022-04-30 10:37:08 +0200 |
commit | 17ddeb7b579160b5367047bbfaa079090090b888 (patch) | |
tree | f4cf9403359420af6d6279ca1e297cf8ffc50d78 /themes | |
parent | 5ccef2421b4d1b740302a1bf53e4e7c47d946f4c (diff) |
luci-material-theme: make control-group flex
The control-group div does not flex. The buttons overflow the screen.
This change mades them flex.
Signed-off-by: Miguel Angel Mulero Martinez <migmul@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r-- | themes/luci-theme-material/htdocs/luci-static/material/cascade.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css index f6cc45fa5b..b14e6dcb49 100644 --- a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css +++ b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css @@ -2340,6 +2340,12 @@ input[name="nslookup"] { margin-bottom: .2rem; } +.control-group { + display: flex; + flex-wrap: wrap; + gap: 2px; +} + [data-page="admin-system-opkg"] div.btn { line-height: 3; display: inline; |