Skip to content

Commit

Permalink
chore: Update workspace combo button styling
Browse files Browse the repository at this point in the history
- Improve the styling of the workspace combo button by adding flexbox properties and user-select none to prevent text selection.
  • Loading branch information
ZanzyTHEbar committed Jun 26, 2024
1 parent ed1d923 commit 24d57fe
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions vscode-workspaces-gnome/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,22 @@
margin-top: 10px;
width: 100%;
}

// This is a label for the entire window, a title
.workspace-combo-button {
margin-top: 10px;
width: 100%;

display: flex;
justify-content: space-between;
font-size: 1.2em;

transition: color 0.2s;

-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;


}

0 comments on commit 24d57fe

Please sign in to comment.