mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
18 lines
365 B
SCSS
18 lines
365 B
SCSS
@import 'tab/index';
|
|
|
|
.tabs {
|
|
flex-grow: 1;
|
|
// Just for Firefox — https://github.com/MetaMask/metamask-extension/issues/8700
|
|
-moz-transform: translateZ(0);
|
|
|
|
&__list {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
border-bottom: 1px solid var(--geyser);
|
|
background-color: var(--white);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
}
|