Skip to content

Instantly share code, notes, and snippets.

@mciastek
Created August 20, 2017 19:07
Show Gist options
  • Select an option

  • Save mciastek/caf643f3b5feee4f4d31759aae993dfe to your computer and use it in GitHub Desktop.

Select an option

Save mciastek/caf643f3b5feee4f4d31759aae993dfe to your computer and use it in GitHub Desktop.
// Before
.action-button {
height: 30px;
z-index: 3;
background-color: $accent;
position: fixed;
width: 30px;
color: $white;
bottom: 15px;
right: 15px;
}
// After
.action-button {
position: fixed;
right: 15px;
bottom: 15px;
z-index: 3;
width: 30px;
height: 30px;
color: $white;
background-color: $accent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment