Skip to content

Commit

Permalink
Redesign docs control button
Browse files Browse the repository at this point in the history
  • Loading branch information
randombenj committed Oct 16, 2024
1 parent 70557f7 commit e2b669d
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions web/src/style/components/DocumentControlButtons.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,42 @@
.share-button {
height: 50px;
width: 50px;
color: white;
color: rgba(0, 0, 0, 0.87);
display: flex;
align-items: center;
justify-content: center;
border: none;
}

.home-button {
background-color: var(--primary-foreground);
background-color: #efefef;
border-top-left-radius: 0.5rem;
border-bottom-left-radius: 0.5rem;
}

.share-button {
background-color: #868686;
border-top-right-radius: 0.5rem;
border-bottom-right-radius: 0.5rem;
color: rgba(0, 0, 0, 0.87);
margin-left: 8px;
border-radius: 0.5rem;
cursor: pointer;
}

.version-select {
background: white;
border: 1px solid rgba(0, 0, 0, 0.42);
overflow: hidden;

padding: 9px;
width: 200px;

font-size: 1.05em;

border-radius: 0 !important;
border-left-color: #efefef !important;
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;

}


.version-select:focus-visible {
outline: none;
}
Expand Down

0 comments on commit e2b669d

Please sign in to comment.