daedalOS/components/system/Taskbar/Search/StyledTabs.ts
Dustin Brett ae3233407c
Some checks failed
Tests / tests (push) Has been cancelled
Tabs span entire length
2025-11-25 20:55:47 -08:00

30 lines
491 B
TypeScript

import styled from "styled-components";
const StyledTabs = styled.ol`
border-bottom: 1px solid hsl(0 0% 13% / 40%);
color: #fff;
display: flex;
font-size: 12px;
font-weight: 600;
gap: 1px;
padding: 2px 13px 0;
position: absolute;
width: 100%;
li {
color: rgb(215 215 215);
padding: 15px 13px 14px;
&.active {
border-bottom: 4px solid rgb(0 120 215);
color: #fff;
}
&:hover {
color: #fff;
}
}
`;
export default StyledTabs;