diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-06 22:47:26 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-06 22:47:26 +0900 |
| commit | 3a28c06534b229998bee340e13da5b8efd13a177 (patch) | |
| tree | 04ea9db06021226da34e9477b561d248e0b32077 /src | |
| parent | :art: (diff) | |
| download | sharkey-3a28c06534b229998bee340e13da5b8efd13a177.tar.gz sharkey-3a28c06534b229998bee340e13da5b8efd13a177.tar.bz2 sharkey-3a28c06534b229998bee340e13da5b8efd13a177.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/style.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/client/style.scss b/src/client/style.scss index 02f794fba4..d2a54e34b0 100644 --- a/src/client/style.scss +++ b/src/client/style.scss @@ -401,6 +401,25 @@ hr { backdrop-filter: blur(15px); } +._inputSplit { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); + grid-gap: 8px; + margin: 1em 0; + + > * { + margin: 0 !important; + } +} + +._inputNoTopMargin { + margin-top: 0 !important; +} + +._inputNoBottomMargin { + margin-bottom: 0 !important; +} + ._table { > ._row { display: flex; |