Skip to content

Commit

Permalink
feat: port css to stop editor buttons from changing size when focusing
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Nov 16, 2021
1 parent 8991077 commit a0f0889
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/layout/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ export default {
height: 3rem;
text-align: right;
width: 100%;
button {
button, button:hover, button:focus {
margin-right: 1.9%;
padding: 0.35rem 1rem;
&:last-child { margin-right: 0; }
Expand All @@ -751,7 +751,10 @@ export default {
background-color: transparent;
color: $secondary-font-color;
display: inline-block;
&:hover { color: $color-primary; }
&:hover {
color: $color-primary;
background-color: transparent;
}
}
}
}
Expand Down

0 comments on commit a0f0889

Please sign in to comment.