MyCrypto/common/sass/styles/tab.scss

28 lines
444 B
SCSS

@import 'common/sass/mixins';
@import 'common/sass/variables';
.Tab {
&-content {
min-height: 50%;
&-pane {
background: #fff;
min-height: 1.5rem;
padding: 1.5rem 2rem;
margin: 0 auto 1rem;
box-shadow: $tab-box-shadow;
border-radius: 2px;
&.is-full-width {
background: none;
box-shadow: none;
padding: 0;
}
}
}
}
.Block {
@extend .Tab-content-pane;
}