fix: adjust button padding for better layout and improve table cell word wrapping
This commit is contained in:
parent
8fe55a2a9b
commit
32e44c2f2a
1 changed files with 3 additions and 4 deletions
7
dist/css/styles.css
vendored
7
dist/css/styles.css
vendored
|
|
@ -1103,9 +1103,8 @@ button:focus-visible {
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
inset: 0;
|
inset: 0;
|
||||||
padding: var(--space-3xl) var(--space-xl) var(--space-3xl);
|
padding: var(--space-xl) var(--space-xl) var(--space-3xl);
|
||||||
padding-top: var(--space-3xl);
|
padding-top: calc(var(--space-xl) + env(safe-area-inset-top, 0px));
|
||||||
padding-top: calc(var(--space-3xl) + env(safe-area-inset-top));
|
|
||||||
background: linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(255, 255, 255, 0.94) 100%);
|
background: linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(255, 255, 255, 0.94) 100%);
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
@ -2076,7 +2075,7 @@ table {
|
||||||
td,
|
td,
|
||||||
th {
|
th {
|
||||||
word-break:normal;
|
word-break:normal;
|
||||||
word-wrap:break-word
|
word-wrap:break-word;
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
padding: var(--space-lg) var(--space-xl);
|
padding: var(--space-lg) var(--space-xl);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue