diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-28 20:07:37 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-28 20:07:37 +0900 |
| commit | e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6 (patch) | |
| tree | 4283a0a36f5cb03f0fb3a534142c06783f8ff725 /packages/client/src/style.scss | |
| parent | /antennas/notes API で日付による絞り込みができるようにする... (diff) | |
| download | sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.tar.gz sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.tar.bz2 sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.zip | |
client: refine ui
Diffstat (limited to 'packages/client/src/style.scss')
| -rw-r--r-- | packages/client/src/style.scss | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss index 951d5a14f3..eeb8d1e82d 100644 --- a/packages/client/src/style.scss +++ b/packages/client/src/style.scss @@ -29,6 +29,7 @@ html { overflow: auto; overflow-wrap: break-word; font-family: "BIZ UDGothic", Roboto, HelveticaNeue, Arial, sans-serif; + font-size: 15px; line-height: 1.35; text-size-adjust: 100%; tab-size: 2; @@ -387,9 +388,8 @@ hr { ._inputSplit { display: grid; - grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); - grid-gap: 8px; - margin: 1em 0; + grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); + grid-gap: 12px; > * { margin: 0 !important; @@ -397,7 +397,7 @@ hr { } ._formBlock { - margin: 20px 0; + margin: 1.5em 0; } ._formRoot { @@ -410,6 +410,18 @@ hr { } } +._formLinksGrid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); + grid-gap: 12px; +} + +._formLinks { + > *:not(:last-child) { + margin-bottom: 8px; + } +} + ._table { > ._row { display: flex; |