1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/app/tab-bar/index.scss
youngje (heka) 660ed410ce
fix: where text wraps even though there is enough space to display it. (#19914)
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
2023-07-24 18:51:29 +05:30

97 lines
1.6 KiB
SCSS

.tab-bar {
display: flex;
flex-direction: column;
justify-content: flex-start;
&__tab {
@include Paragraph;
color: var(--color-text-default);
display: flex;
flex-flow: row nowrap;
align-items: center;
min-width: 0;
flex: 0 0 auto;
box-sizing: border-box;
transition: opacity 200ms ease-in-out;
background-color: unset;
text-align: start;
position: relative;
@include screen-sm-max {
@include H4;
opacity: 1;
}
&__selected-indicator {
width: 4px;
height: calc(100% - 8px);
position: absolute;
top: 4px;
left: 4px;
}
&__content {
display: flex;
align-items: center;
position: relative;
width: 100%;
&__title {
@include H4;
@include screen-sm-min {
@include H6;
}
}
&__description {
display: none;
@include screen-sm-max {
@include H6;
display: block;
font-weight: 300;
margin-top: 8px;
min-height: 14px;
}
}
&__icon {
display: flex;
justify-content: center;
margin-inline-end: 16px;
flex: 0 0 18px;
}
}
&__caret {
display: none;
@include screen-sm-max {
display: block;
margin-inline-start: auto;
margin-inline-end: 8px;
[dir='rtl'] & {
transform: rotate(180deg);
}
}
}
&--active {
opacity: 1 !important;
@include screen-sm-min {
background-color: var(--color-primary-muted);
}
}
}
&__grow-tab {
flex-grow: 1;
}
}