Skip to content

Commit ccf236d

Browse files
committedMar 26, 2024·
Use CSS caret instead of FontAwesome symbol
1 parent c117647 commit ccf236d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed
 

‎assets/css/main.css

+10-5
Original file line numberDiff line numberDiff line change
@@ -2273,13 +2273,18 @@ span.sc {
22732273
.open-topics .item::after {
22742274
display: block;
22752275
position: absolute;
2276-
right: 30px;
2277-
top: 10px;
2278-
font: 32px/50px FontAwesome;
2279-
content: "\f107";
2276+
content: "";
2277+
width: 0;
2278+
height: 0;
2279+
border-left: 10px solid transparent;
2280+
border-right: 10px solid transparent;
2281+
border-top: 10px solid #939393;
2282+
top: 20px;
2283+
right: 20px;
22802284
}
22812285
.open-topics .item.open::after {
2282-
content: "\f106";
2286+
border-bottom: 10px solid #939393;
2287+
border-top: none;
22832288
}
22842289

22852290
.open-topics .item .text-content h4 {

0 commit comments

Comments
 (0)
Please sign in to comment.