File size: 423 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
.rightBar {
display: flex;
flex-direction: column;
&__card-hackathon {
background-color: var(--main-0);
padding: 1rem;
border-radius: 5px;
line-height: 1.5;
height: max-content;
img {
width: 100%;
height: auto;
max-height: 100px;
border-radius: 5px;
display: inline-block;
margin-bottom: 1rem;
}
p a {
color: var(--main-theme);
}
}
}
|