29 lines
433 B
CSS
29 lines
433 B
CSS
.blogDiscussions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
flex-wrap: wrap;
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.blogDiscussions_container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.linkText {
|
|
width: 12rem;
|
|
}
|
|
|
|
.icon {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
padding-right: 0.5rem;
|
|
}
|
|
|
|
.icon path {
|
|
fill: var(--ifm-heading-color) !important;
|
|
} |