diff options
| author | zephyr <[email protected]> | 2023-06-20 16:58:43 +0800 |
|---|---|---|
| committer | Larvan2 <[email protected]> | 2023-06-20 22:10:39 +0800 |
| commit | bf26845a076ec157640a6e4b1dc3b9d56f0759db (patch) | |
| tree | 0c096273a8c274f67183efc50acd36a379161cdb /src/components/ConnectionTable.module.scss | |
| parent | d2203727898dec31c290ff38e5d375670be36bb0 (diff) | |
feat: column edit
Diffstat (limited to 'src/components/ConnectionTable.module.scss')
| -rw-r--r-- | src/components/ConnectionTable.module.scss | 40 |
1 files changed, 17 insertions, 23 deletions
diff --git a/src/components/ConnectionTable.module.scss b/src/components/ConnectionTable.module.scss index d25eb7d..d53acad 100644 --- a/src/components/ConnectionTable.module.scss +++ b/src/components/ConnectionTable.module.scss @@ -1,11 +1,12 @@ .tr { - display: grid; + // display: flex; + // align-items: center; + // justify-content: flex-start; /* grid-template-columns: repeat(11, minmax(max-content, 1fr)); */ - grid-template-columns: repeat(13, minmax(max-content, auto)); + // grid-template-columns: repeat(13, minmax(max-content, auto)); } .th { - padding: 3% 2px; height: 50px; background: var(--color-background); position: sticky; @@ -13,33 +14,16 @@ font-size: 1em; user-select: none; text-align: center; - vertical-align: middle; - display: flex; - align-items: center; - justify-content: space-between; &:hover { color: var(--color-text-highlight); } } -.thdu { - padding: 3% 2px; - height: 50px; - background: var(--color-background); - position: sticky; - top: 0; - font-size: 1em; - user-select: none; - text-align: center; - vertical-align: middle; +.btnSection { + width: 140px; display: flex; - align-items: center; - justify-content: center; - - &:hover { - color: var(--color-text-highlight); - } + justify-content: space-between; } .break { @@ -59,9 +43,12 @@ align-items: center; text-align: left; vertical-align: middle; + white-space: nowrap; + &:hover { color: var(--color-text-highlight); } + font-family: var(--font-normal); } @@ -85,3 +72,10 @@ .rotate180 { transform: rotate(180deg); } + +.columnManagerRow { + width: 200px; + display: flex; + margin: 5px 0; + justify-content: space-between; +} |
