Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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 admin_ui/src/components/SidebarNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default defineComponent({
div.sidebar {
background-color: rgba(0, 0, 0, 0.1);
overflow-y: auto;
height: 100%;
height: calc(100vh - 5rem);
Comment thread
abhishek-compro marked this conversation as resolved.

p {
padding: 0.5rem;
Expand Down
12 changes: 10 additions & 2 deletions admin_ui/src/views/RowListing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,7 @@ div.wrapper {
cursor: pointer;
display: flex;
flex-direction: row;
column-gap: 0.5rem;
Comment thread
abhishek-compro marked this conversation as resolved.

@media (max-width: @mobile_width) {
width: 100%;
Expand All @@ -827,11 +828,17 @@ div.wrapper {
text-decoration: none;
margin-left: 0.25rem;
box-sizing: border-box;
padding: 0.2rem 0.5rem;
padding: 0.5rem 0.8rem;
text-align: center;
border-radius: 0.5rem;
font-size: 0.8rem;

&:hover {
color: white;
transform: scale(1.1);
}

&:active {
outline: 0.2rem solid lightblue;
}
Comment thread
abhishek-compro marked this conversation as resolved.
Outdated

@media (max-width: @mobile_width) {
Expand All @@ -858,6 +865,7 @@ div.wrapper {
div.left_column,
div.right_column {
overflow: auto;
height: calc(100vh - 5rem);
padding: 0.5rem;
}

Expand Down
Loading