mirror of
https://github.com/status-im/consul.git
synced 2025-01-30 15:37:14 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
25 lines
507 B
SCSS
25 lines
507 B
SCSS
%tab-nav {
|
|
clear: both;
|
|
}
|
|
%tab-nav ul {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
%with-animated-tab-selection ul::after {
|
|
@extend %as-pseudo, %with-transition-500;
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 0;
|
|
border-top: 0;
|
|
width: calc(var(--selected-width, 0) * 1px);
|
|
transform: translate(calc(var(--selected-left, 0) * 1px), 0);
|
|
transition-property: transform, width;
|
|
}
|
|
%tab-button {
|
|
display: inline-block;
|
|
padding: 16px 13px;
|
|
}
|