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
9 changes: 6 additions & 3 deletions client/src/components/Logs/Logs.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@

.input-group-search {
background-color: transparent;
position: relative;
position: absolute;
width: 1.5rem;
height: 1.5rem;
top: 0.4rem;
Expand All @@ -167,12 +167,12 @@
}

.input-group-search__icon--cross {
left: -4.5rem;
right: 4.5rem;
cursor: pointer;
}

.input-group-search__icon--tooltip {
left: -4rem;
right: 2.5rem;
Comment on lines 169 to +175
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The positioning changes from left-based to right-based for the cross and tooltip icons use different distance values. Please verify that these new positions correctly align the icons as intended, especially on mobile devices. You might need to adjust the values after testing on various screen sizes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The positioning changes from left-based to right-based for the cross and tooltip icons use different distance values. Please verify that these new positions correctly align the icons as intended, especially on mobile devices. You might need to adjust the values after testing on various screen sizes.

I can confirm that this change work one all polular screen size.

}

.form-control--container {
Expand All @@ -182,6 +182,9 @@
.field__search {
display: flex;
flex-grow: 1;
position: relative;
padding-left: 24px;
padding-right: 24px;
}

@media (max-width: 767.98px) {
Expand Down
Loading