diff options
| author | IEatChili <nanunguyen99@gmail.com> | 2024-06-26 13:58:20 -0400 |
|---|---|---|
| committer | IEatChili <nanunguyen99@gmail.com> | 2024-06-26 13:58:20 -0400 |
| commit | 3190f1eb07a47a5e1ccdd20e346b47094118292d (patch) | |
| tree | 7b8dab1763720ee71bc89e888b0296fdd31054b5 /src/client/views/StyleProvider.scss | |
| parent | 376ff1626b24cbac12b27ad072690424549f05c7 (diff) | |
feat: worked more on keyword input for docs
Diffstat (limited to 'src/client/views/StyleProvider.scss')
| -rw-r--r-- | src/client/views/StyleProvider.scss | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/client/views/StyleProvider.scss b/src/client/views/StyleProvider.scss index 1e2af9a3a..7cc06f922 100644 --- a/src/client/views/StyleProvider.scss +++ b/src/client/views/StyleProvider.scss @@ -57,12 +57,41 @@ .keywords-container { display: flex; flex-wrap: wrap; + flex-direction: column; + padding-bottom: 4px; + border: 1px solid; + border-radius: 4px; +} + +.keywords-list { + display: flex; + flex-wrap: wrap; } .keyword { - padding: 5px 10px; + padding: 5px 5px; background-color: lightblue; border: 1px solid black; border-radius: 5px; white-space: nowrap; + display: flex; + align-items: center; +} + +.keyword-editing-box { + margin-top: 8px; +} + +.keyword-input-box { + // display: flex; + // align-items: center; + // align-content: center; + margin: auto; + align-self: center; + width: 90%; +} + +.keyword-buttons { + margin-left: auto; + width: 10%; } |
