Skip to content

Commit

Permalink
fix(ui): Request Panel > tab > delete button misaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
flawiddsouza committed May 14, 2024
1 parent a27138a commit f374f82
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions packages/ui/src/components/RequestPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -876,30 +876,24 @@ export default {
margin-top: 0.5rem;
}
i {
.custom-dropdown i {
cursor: pointer;
padding-left: 4px;
}
li {
padding: 8px 12px;
cursor: pointer;
}
li:hover {
background: var(--button-hover-background-color);
}
.selected-option {
cursor: pointer;
background: var(--background-color);
}
.custom-dropdown {
padding-left: 0.8rem;
position: relative;
background-color: var(--modal-background-color);
}
.custom-dropdown .row {
display: flex;
align-items: center;
padding-bottom: 1px;
padding-right: 5px;
}
.custom-dropdown ul {
list-style-type: none;
padding: 0;
Expand All @@ -914,11 +908,17 @@ li:hover {
left: 0;
}
.row {
display: flex;
align-items: center;
padding-bottom: 1px;
padding-right: 5px;
.custom-dropdown li {
padding: 8px 12px;
cursor: pointer;
}
.custom-dropdown li:hover {
background: var(--button-hover-background-color);
}
.custom-dropdown .selected-option {
cursor: pointer;
background: var(--background-color);
}
</style>

0 comments on commit f374f82

Please sign in to comment.