78 lines
1.7 KiB
SCSS
Raw Normal View History

2020-02-10 19:09:57 +09:00
.left-container {
2020-01-21 13:32:10 +09:00
display: flex;
2020-02-10 19:09:57 +09:00
width: 100%;
2020-01-21 13:32:10 +09:00
height: 100%;
}
2020-02-10 19:09:57 +09:00
::ng-deep .global-menu {
2020-01-21 13:32:10 +09:00
display: flex;
flex-direction: row;
2020-02-10 19:09:57 +09:00
.mat-tab-header {
border-bottom: none !important;
width: 100%;
}
2020-01-21 13:32:10 +09:00
.mat-tab-label-container {
.mat-tab-list {
.mat-tab-labels {
flex-flow: column;
height: 360px;
padding-top: 10px;
border-bottom: none;
2020-02-10 19:09:57 +09:00
2020-01-21 13:32:10 +09:00
.mat-tab-label {
width: 100%;
height: 80px;
padding: 0;
2020-02-10 19:09:57 +09:00
min-width: 0 !important;
.mat-tab-label-content {
.icon-item {
display: inline-flex;
width: 36px;
height: 36px;
border-radius: 50%;
justify-content: center;
align-items: center;
transform: scale(0.9);
transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
svg {
width: 24px;
height: 24px;
stroke: #ffffff;
stroke-width: 1.5;
stroke-linecap: square;
stroke-linejoin: miter;
fill: none;
}
.mat-badge-content {
right: -4px !important;
}
}
}
&.mat-tab-label-active {
min-width: 0 !important;
}
&[aria-selected='true'] {
opacity: 1;
.mat-tab-label-content {
.icon-item {
transform: scale(1);
}
}
}
2020-01-21 13:32:10 +09:00
}
}
.mat-ink-bar {
background-color: none;
height: 0;
}
}
}
2020-02-10 19:09:57 +09:00
.mat-tab-body-wrapper {
.mat-tab-body {
height: 100%;
width: 100%;
2020-01-21 13:32:10 +09:00
}
}
}