Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,14 @@ html {
}
&-Button {
@apply text-inactive rounded-sm h-8 w-8 bg-card justify-center mr-3;
@apply transition-all duration-300 ease-in-out;
@media (min-width: 997px) {
@apply w-auto justify-between;
}
@media (max-width: 996px) {
@media (min-width: 769px) and (max-width: 996px) {
@apply w-[80%] mr-7;
}
@media (max-width: 768px) {
@apply mr-7;
}
.DocSearch-Search-Icon {
Expand All @@ -137,7 +141,7 @@ html {
@apply hidden;
}
.DocSearch-Button-Placeholder {
@apply pr-10;
@apply pr-6 mr-5 ml-2;
}
}

Expand Down