mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* update contracts * add version selector * show banner on all pages * show banner on all pages * Announcement/warning messages cleanup * new main announcement message * contextual compute-to-data warnings in publish form & asset action * copy update * change hardcoded URLs * change localStorage key * to prevent user preferences clashes when switching between v3 & v4 * footer stats note changes * move copy into content file * mention external markets * footer stats note copy changes * modified pool widget footer * take out pool reserve display * style & spacing updates for fees Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
24 lines
431 B
CSS
24 lines
431 B
CSS
.form {
|
|
composes: box from '@shared/atoms/Box.module.css';
|
|
margin-bottom: var(--spacer);
|
|
}
|
|
|
|
@media (min-width: 40rem) {
|
|
.form {
|
|
padding-left: calc(var(--spacer) * 2);
|
|
padding-right: calc(var(--spacer) * 2);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 60rem) {
|
|
.form {
|
|
padding-left: calc(var(--spacer) * 4);
|
|
padding-right: calc(var(--spacer) * 4);
|
|
}
|
|
}
|
|
|
|
.fieldWarning {
|
|
margin-top: -2rem;
|
|
margin-bottom: var(--spacer);
|
|
}
|