A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/tab-bar/index.scss

94 lines
1.7 KiB

.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;
opacity: 0.5;
transition: opacity 200ms ease-in-out;
background-color: unset;
text-align: start;
@media screen and (min-width: $break-large) {
&:hover {
opacity: 0.4;
}
&:active {
opacity: 0.6;
}
}
@media screen and (max-width: $break-small) {
@include H4;
border-bottom: 1px solid var(--color-border-muted);
opacity: 1;
}
&__content {
padding: 12px 18px;
display: flex;
flex-flow: row wrap;
align-items: center;
position: relative;
&__title {
@include H4;
@media screen and (min-width: $break-large) {
@include H6;
}
}
&__description {
display: none;
@media screen and (max-width: $break-small) {
@include H6;
display: block;
font-weight: 300;
margin-top: 8px;
min-height: 14px;
}
}
&__icon {
margin-inline-end: 16px;
display: flex;
}
}
&__caret {
display: none;
@media screen and (max-width: $break-small) {
display: block;
margin-inline-start: auto;
margin-inline-end: 8px;
[dir='rtl'] & {
transform: rotate(180deg);
}
}
}
&--active {
opacity: 1 !important;
}
}
&__grow-tab {
flex-grow: 1;
}
}