1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-28 16:47:52 +02:00
market/src/components/@shared/FormInput/Disclaimer.module.css

13 lines
223 B
CSS

.disclaimer {
margin-top: calc(var(--spacer) / 3);
transition: all 0.3s ease-in;
max-height: 100px;
max-width: 100%;
overflow-y: hidden;
}
.disclaimer.hidden {
max-height: 0;
transition: all 0.2s ease-out;
}