Skip to content

Commit

Permalink
fix headers
Browse files Browse the repository at this point in the history
  • Loading branch information
ksopyla committed Oct 19, 2024
1 parent e0c4128 commit d49832d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions ui/src/index.sass
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ body
@tailwind components
@tailwind utilities

$headers:("fontSize1": 38, "fontSize2": 30, "fontSize3": 24, "fontSize4": 20, "fontSize5": 16, "lineHeight1": 1.21053, "lineHeight2": 1.26667, "lineHeight3": 1.33333, "lineHeight4": 1.40, "lineHeight5": 1.5)
$headers: ("fontSize1": 38, "fontSize2": 30, "fontSize3": 24, "fontSize4": 20, "fontSize5": 16, "lineHeight1": 1.21053, "lineHeight2": 1.26667, "lineHeight3": 1.33333, "lineHeight4": 1.40, "lineHeight5": 1.5)

@for $i from 1 through 5
h#{$i}
font-size: map.get($headers, "fontSize#{$i}") + px !important
line-height: map.get($headers, "lineHeight#{$i}") !important
font-weight: map.get($headers, "fontWeight#{$i}") !important
.h#{$i}
font-size: #{map.get($headers, "fontSize#{$i}")}px !important
line-height: #{map.get($headers, "lineHeight#{$i}")} !important

.ant-table-body
overflow-y: hidden !important
Expand Down

0 comments on commit d49832d

Please sign in to comment.