Skip to content

Commit

Permalink
chore: add chevron-down icon
Browse files Browse the repository at this point in the history
  • Loading branch information
luandro committed Apr 21, 2023
1 parent d11ff4b commit aafd2d3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/assets/css/icons.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
.gg-chevron-down {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs, 1));
width: 22px;
height: 22px;
border: 2px solid transparent;
border-radius: 100px;
}

.gg-chevron-down::after {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 10px;
height: 10px;
border-bottom: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
left: 4px;
top: 2px;
}

.gg-copy {
box-sizing: border-box;
position: relative;
Expand Down

0 comments on commit aafd2d3

Please sign in to comment.