-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(board): spacing error in chrome 56 (#1183)
* fix(styling): using margin when gap is not supported by browser * fix(styling): changed one of the duplicate classnames * fix(styling): added minimum height to table header * fix(board): CSS restructuring
- Loading branch information
Showing
4 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,7 @@ | |
.board { | ||
display: flex; | ||
} | ||
.board > * { | ||
margin: 10px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
next-tavla/src/Board/scenarios/Table/components/TableHeader/styles.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.headerWrapper { | ||
.tableHeaderWrapper { | ||
display: flex; | ||
align-items: center; | ||
min-height: 2em; | ||
} | ||
|
||
.heading { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,9 @@ | |
overflow: hidden; | ||
padding: 1em 0; | ||
} | ||
|
||
@supports not (gap: 0.75em) { | ||
.rootContainer > * { | ||
margin: 0.75em; | ||
} | ||
} |