summaryrefslogtreecommitdiff
path: root/src/components/ConnectionTable.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ConnectionTable.module.scss')
-rw-r--r--src/components/ConnectionTable.module.scss40
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;
+}