Skip to content

Commit 7f6d34a

Browse files
committed
fix: add styles for category titles, subtitle buttons, and expand buttons in SettingsContentLayout
1 parent 91bee9b commit 7f6d34a

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

src/components/Layout/SettingsContentLayout/settingsContentLayout.css

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,55 @@
1313
display: flex;
1414
flex-direction: column;
1515
gap: 16px;
16+
17+
.categoryTitle {
18+
text-transform: capitalize;
19+
font-size: 16px;
20+
margin-bottom: 16px;
21+
color: var(--primary-text-color);
22+
23+
& .icon {
24+
vertical-align: top;
25+
}
26+
}
27+
28+
.subTitleButton {
29+
cursor: pointer;
30+
background: none;
31+
border: none;
32+
margin: 0;
33+
padding: 0;
34+
}
35+
.subTitleIcon {
36+
font-size: 12px;
37+
}
38+
.topicsFlex {
39+
display: flex;
40+
margin-top: 12px;
41+
flex-direction: column;
42+
flex-wrap: wrap;
43+
gap: 24px;
44+
}
45+
.categoryContent {
46+
margin-top: 12px;
47+
}
48+
.expandButton {
49+
width: auto;
50+
font-size: 12px;
51+
height: 20px;
52+
border: none;
53+
background-color: var(--button-background-color);
54+
border-radius: 20px;
55+
justify-content: center;
56+
align-items: center;
57+
text-align: center;
58+
display: inline-flex;
59+
padding: 0 6px;
60+
display: inline-flex;
61+
column-gap: 4px;
62+
text-transform: lowercase;
63+
cursor: pointer;
64+
}
1665
}
1766
.settingsContent header {
1867
display: flex;

0 commit comments

Comments
 (0)