Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Administrative module user search #992

Open
wants to merge 1 commit into
base: v2.0.2
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion GUI/src/components/Card/Card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
border: 1px solid get-color(black-coral-2);
border-radius: $veera-radius-s;
max-height: 80vh;
overflow-y: auto;
overflow-y: visible;

&--borderless {
border: 0;
Expand Down
5 changes: 2 additions & 3 deletions GUI/src/components/DataTable/DataTable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

&__scrollWrapper {
height: 100%;
overflow-x: auto;
white-space: nowrap;
display: block;
max-height: 60vh;
Expand Down Expand Up @@ -70,12 +69,12 @@

&__filter {
position: absolute;
top: 100%;
bottom: 80%;
left: 0;
right: 0;
padding: get-spacing(paldiski);
background-color: get-color(white);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
box-shadow: 0 0px 10px rgba(0, 0, 0, 0.10);
border-radius: 0 0 4px 4px;
border: 1px solid get-color(black-coral-2);

Expand Down