mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-03-22 09:44:44 -05:00
21 lines
311 B
CSS
21 lines
311 B
CSS
.widget {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: repeat(2, auto);
|
|
gap: 18px;
|
|
width: fit-content;
|
|
max-width: 100%;
|
|
|
|
background: var(--bg-shade-0);
|
|
border-radius: 6px;
|
|
padding: 18px;
|
|
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.widget p {
|
|
color: var(--text-shade-1);
|
|
margin: 0;
|
|
margin-right: 5rem;
|
|
}
|