Skip to content

Commit

Permalink
VT-23. Refactor to solve stylelint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
romina1601 committed Sep 12, 2024
1 parent 4196844 commit 76a1ef2
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions style/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@
margin-left: auto; /* Aligns it to the right */
}

.info-box button:disabled {
background-color: #ccc;
cursor: not-allowed;
}

/* Workspace view */
.workspace {
grid-area: workspace;
Expand Down Expand Up @@ -186,10 +181,6 @@
box-sizing: border-box;
}

.button-container .export-button:last-child {
margin-right: 0;
}

/* Common styling */
.search-bar input,
.export-control input {
Expand Down Expand Up @@ -218,3 +209,13 @@
.export-button:hover {
background-color: #0056b3;
}

/* keep the right order of specificity in css */
.info-box button:disabled {
background-color: #ccc;
cursor: not-allowed;
}

.button-container .export-button:last-child {
margin-right: 0;
}

0 comments on commit 76a1ef2

Please sign in to comment.