Skip to content

Commit e7339bb

Browse files
authored
Update gettingstarted styling with grid element Update fontawesome file (#7415)
1 parent cddf46b commit e7339bb

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

src/css/all.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -726,10 +726,10 @@
726726
}
727727

728728
.fa-arrow-down::before {
729-
content: "\f063"
729+
content: "\f063";
730730
}
731731
.fa-arrow-up::before {
732-
content: "\f062"
732+
content: "\f062";
733733
}
734734

735735
.fa-arrows-rotate::before {
@@ -1020,6 +1020,10 @@
10201020
content: "\e2ca";
10211021
}
10221022

1023+
.fa-link::before {
1024+
content: "\f0c1";
1025+
}
1026+
10231027
.sr-only,
10241028
.fa-sr-only {
10251029
position: absolute;

src/css/gettingStarted.module.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,25 @@
7474
}
7575
}
7676

77+
.grid {
78+
gap: 16px;
79+
display: grid;
80+
margin-top: 24px;
81+
grid-template-columns: none;
82+
@media (min-width: 600px) {
83+
grid-template-columns: 1fr 1fr;
84+
}
85+
a {
86+
border-color: var(--ifm-btn-border-color);
87+
background: transparent;
88+
color: var(--main-font-color);
89+
&:hover {
90+
border-color: var(--ifm-btn-border-color-active);
91+
background: transparent;
92+
}
93+
}
94+
}
95+
7796
.boxTitle {
7897
font-family: Barlow, system-ui, Arial, sans-serif;
7998
font-style: normal;

0 commit comments

Comments
 (0)