mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-02 14:28:18 +00:00
14 lines
356 B
SCSS
14 lines
356 B
SCSS
![]() |
/// Proxy for AD container styles
|
||
|
.nacho-container {
|
||
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
|
||
|
background-color: set-color(white, base);
|
||
|
background-clip: padding-box;
|
||
|
border-radius: 2px;
|
||
|
padding: item-spacing(4);
|
||
|
transition: box-shadow 83ms;
|
||
|
|
||
|
&--with-shadow {
|
||
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.2);
|
||
|
}
|
||
|
}
|