mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
18 lines
259 B
CSS
18 lines
259 B
CSS
.grid {
|
|
display: grid;
|
|
gap: calc(var(--spacer) * 1.5);
|
|
position: relative;
|
|
}
|
|
|
|
@media (min-width: 55rem) {
|
|
.grid {
|
|
/* lazy golden ratio */
|
|
grid-template-columns: 1.618fr 1fr;
|
|
}
|
|
|
|
.sticky {
|
|
position: sticky;
|
|
top: var(--spacer);
|
|
}
|
|
}
|