You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
451 B
32 lines
451 B
.root { |
|
display: grid; |
|
grid-template-columns: 1fr auto; |
|
} |
|
|
|
.mobileChat { |
|
display: block; |
|
top: 0px; |
|
width: 100%; |
|
} |
|
|
|
.leftCol { |
|
display: grid; |
|
} |
|
.lowerRow { |
|
position: relative; |
|
display: grid; |
|
} |
|
|
|
.pageContentSection { |
|
background-color: var(--theme-background-secondary); |
|
border-radius: var(--theme-rounded-corners); |
|
margin: 1vw; |
|
padding: 1vw; |
|
width: 100%; |
|
} |
|
|
|
@media (min-width: 768px) { |
|
.mobileChat { |
|
display: none; |
|
} |
|
}
|
|
|