1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-27 14:59:37 +02:00
flame/client/src/components/Bookmarks/BookmarkCard/BookmarkCard.module.css

28 lines
431 B
CSS
Raw Normal View History

.BookmarkCard {
/* margin-top: 10px; */
margin-bottom: 30px;
}
.BookmarkCard h3 {
color: var(--color-accent);
margin-bottom: 10px;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
}
.Bookmarks {
display: flex;
flex-direction: column;
}
.Bookmarks a {
line-height: 2;
transition: all 0.25s;
}
2021-05-25 11:44:11 +02:00
.BookmarkCard a:hover,
.BookmarkCard a:focus {
text-decoration: underline;
padding-left: 10px;
}