Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@roeib
Created June 20, 2019 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roeib/9813f484bd61e0d26d83a169d9a4e066 to your computer and use it in GitHub Desktop.
Save roeib/9813f484bd61e0d26d83a169d9a4e066 to your computer and use it in GitHub Desktop.
/* base_button.css */
.baseButton {
border: 2px solid #ddd;
color:#FFF;
background-color: gray;
}
/* submit_button.css */
.submitButton {
composes: baseButton from "./base_button.css";
background-color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment