mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 10:00:07 +00:00
22 lines
329 B
SCSS
22 lines
329 B
SCSS
/// Search bar height
|
|
$height: 40px;
|
|
|
|
.nacho-global-search {
|
|
color: $text-color;
|
|
|
|
&__text-input {
|
|
height: $height;
|
|
}
|
|
|
|
/**
|
|
* Rules for the search bar filter component
|
|
*/
|
|
&__filter {
|
|
width: 75px;
|
|
display: inline-flex;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|