🐤 tabs component

This commit is contained in:
alonso.torres 2020-03-23 11:33:31 +01:00
parent 2c1919117d
commit c09fe46790
5 changed files with 94 additions and 0 deletions

View file

@ -67,6 +67,7 @@
@import 'main/partials/context-menu';
@import 'main/partials/debug-icons-preview';
@import 'main/partials/editable-label';
@import 'main/partials/tab-container';
//#################################################
// Resources

View file

@ -78,6 +78,7 @@
flex-wrap: wrap;
overflow-y: auto;
padding-bottom: $medium;
height: 100%;
}
&#layers {

View file

@ -0,0 +1,31 @@
.tab-container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.tab-container-tabs {
background: $color-gray-60;
cursor: pointer;
display: flex;
flex-direction: row;
font-size: 12px;
height: 2.5rem;
}
.tab-container-tab-title {
align-items: center;
background: $color-gray-60;
border-radius: 2px 2px 0px 0px;
color: $color-white;
display: flex;
justify-content: center;
margin: 0.5rem 0.25rem 0 0.25rem ;
width: 100%;
&.current{
background: $color-gray-50;
}
}