mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-11 11:47:07 +00:00
* filters visble on click * servicemap layout * headers added Icon changed * flex removed , we have max size for filter * added mixins * search input caption * PR commemts * changed colors to variables * lint fix small buttom style fix Co-authored-by: Leon <>
22 lines
468 B
SCSS
22 lines
468 B
SCSS
.subSectionHeader{
|
|
position: relative;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
color: $font-color;
|
|
&::after{
|
|
content: "";
|
|
border: 1px solid #E9EBF8;
|
|
transform: rotate(180deg);
|
|
position: absolute;
|
|
left: 0px;
|
|
right: -100%;
|
|
top: 100%;
|
|
bottom: 0%;
|
|
width: 100%;
|
|
width: -moz-available;
|
|
width: -webkit-fill-available;
|
|
width: strech;
|
|
}
|
|
} |