CoastalCommitsPastes/client/components/header/header.module.css

63 lines
891 B
CSS
Raw Normal View History

2022-03-07 19:42:47 -05:00
.tabs {
justify-content: center;
display: flex;
margin: var(--gap) 0;
}
.tabs .buttons {
display: flex;
justify-content: center;
align-items: center;
}
.tabs .buttons > button,
.tabs .buttons > a > button {
border: none;
border-radius: 0;
cursor: pointer;
}
.tabs .active {
border-bottom: 1px solid var(--darker-gray) !important;
2022-03-07 19:42:47 -05:00
}
2022-03-07 21:36:36 -05:00
.mobile {
position: absolute;
z-index: 1;
}
.controls {
margin-top: var(--gap);
display: none !important;
2022-03-07 21:36:36 -05:00
}
2022-03-07 19:54:33 -05:00
@media only screen and (max-width: 650px) {
.tabs {
display: none;
}
.controls {
display: block !important;
}
2022-03-07 19:42:47 -05:00
}
2022-03-09 04:50:55 -05:00
.controls button:active,
.controls button:focus,
.controls button:hover {
outline: 1px solid rgba(0, 0, 0, 0.2);
2022-03-07 19:42:47 -05:00
}
2022-03-07 19:54:33 -05:00
.wrapper {
display: flex;
align-items: center;
width: min-content;
2022-03-07 19:54:33 -05:00
}
.selectContent {
width: auto;
height: 18px;
display: flex;
justify-content: space-between;
align-items: center;
2022-03-07 19:54:33 -05:00
}