mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
439 B
CSS
26 lines
439 B
CSS
.adminWrapper table {
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
border: 1px solid var(--gray);
|
|
border-radius: var(--radius);
|
|
padding: var(--gap-half);
|
|
}
|
|
|
|
.adminWrapper table th {
|
|
text-align: left;
|
|
background: var(--gray-light);
|
|
color: var(--gray-dark);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.postModal details {
|
|
border-radius: var(--radius);
|
|
padding: var(--gap);
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
.postModal summary {
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|