2022-11-19 03:23:06 +00:00
|
|
|
@use '../../../styles/Mixins/' as *;
|
2022-10-03 16:15:26 +00:00
|
|
|
|
|
|
|
.app-tabs {
|
2022-11-10 19:54:06 +00:00
|
|
|
display: grid;
|
2022-10-03 16:15:26 +00:00
|
|
|
grid-template-columns: min-content auto;
|
2022-10-30 08:32:14 +00:00
|
|
|
column-gap: 1rem;
|
2022-10-30 03:36:28 +00:00
|
|
|
// height: 100%;
|
2022-10-30 12:15:03 +00:00
|
|
|
height: $app-content-height;
|
2022-10-03 16:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-tabs-list {
|
|
|
|
display: grid;
|
|
|
|
row-gap: 0.3rem;
|
2022-10-30 03:36:28 +00:00
|
|
|
grid-auto-rows: min-content;
|
2022-10-03 16:15:26 +00:00
|
|
|
color: var(--tab-list-text-inactive);
|
|
|
|
|
|
|
|
button {
|
|
|
|
font-size: 0.85rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--tab-hover-color);
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[aria-selected='true'] {
|
|
|
|
background-color: var(--tab-list-bg);
|
|
|
|
color: var(--tab-list-text);
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-tabs-panels {
|
|
|
|
.app-tabs-panel {
|
|
|
|
padding: 0;
|
2022-10-30 03:36:28 +00:00
|
|
|
height: 100%;
|
2022-10-03 16:15:26 +00:00
|
|
|
}
|
|
|
|
}
|