Skip to content

Commit d70d24e

Browse files
authored
Merge branch 'dev' into fix/#321-K
2 parents c0e2271 + ac2cf50 commit d70d24e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

โ€Žclient/src/components/Mom/style.module.scssโ€Ž

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
}
3737
}
3838

39+
@mixin heading-style($border-size, $padding) {
40+
padding: $padding 0px;
41+
border-bottom: $border-size solid $gray-300;
42+
}
43+
3944
.mom-body {
4045
box-sizing: border-box;
4146
height: calc(100% - 70px);
@@ -45,23 +50,27 @@
4550
white-space: pre-wrap;
4651

4752
& > h1 {
48-
font-size: 32px;
53+
font-size: 36px;
4954
font-weight: 700;
55+
@include heading-style(1.5px, 8px);
5056
}
5157

5258
& > h2 {
5359
font-size: 28px;
5460
font-weight: 600;
61+
@include heading-style(1px, 6px);
5562
}
5663

5764
& > h3 {
5865
font-size: 24px;
5966
font-weight: 500;
67+
@include heading-style(0.5px, 4px);
6068
}
6169

6270
& > p {
6371
font-size: initial;
6472
font-weight: 400;
73+
line-height: 30px;
6574
}
6675

6776
& > *:focus {

0 commit comments

Comments
ย (0)