Skip to content

Commit

Permalink
Make borders white for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
lorgan3 committed Aug 17, 2023
1 parent 2fc7c24 commit fe90464
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions src/components/MainMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@ const loadSave = (event: Event) => {
scroll-snap-type: x mandatory;
scrollbar-width: thin;
scrollbar-color: black transparent;
scrollbar-color: #fff transparent;
&::-webkit-scrollbar {
height: 5px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background: black;
background: #fff;
}
> * {
Expand All @@ -284,9 +284,9 @@ const loadSave = (event: Event) => {
gap: 20px;
&:first-child {
border-left: 2px solid black;
border-left: 2px solid #fff;
}
border-right: 2px solid black;
border-right: 2px solid #fff;
transition: width 1s;
width: 340px;
}
Expand All @@ -306,15 +306,15 @@ const loadSave = (event: Event) => {
overflow: auto;
scrollbar-width: thin;
scrollbar-color: black transparent;
scrollbar-color: #fff transparent;
&::-webkit-scrollbar {
width: 5px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background: black;
background: #fff;
}
display: flex;
Expand Down Expand Up @@ -354,8 +354,8 @@ const loadSave = (event: Event) => {
background: rgb(31, 34, 77);
text-decoration: initial;
border-radius: 6px;
border-bottom: 2px solid #000;
border-right: 2px solid #000;
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
&:hover {
background: rgb(44, 49, 120);
Expand Down
6 changes: 3 additions & 3 deletions src/components/hud/IngameMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ const handleResume = () => {
transition: transform 0.5s;
transform: translateY(100vh);
background: rgb(59, 77, 152);
border: 2px solid #000;
border: 2px solid #fff;
border-radius: 3px;
overflow: auto;
scrollbar-width: thin;
scrollbar-color: black transparent;
scrollbar-color: #fff transparent;
&::-webkit-scrollbar {
width: 5px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background: black;
background: #fff;
}
h3 {
Expand Down

0 comments on commit fe90464

Please sign in to comment.