20 lines
329 B
SCSS
20 lines
329 B
SCSS
// Import page-specific CSS files here.
|
|
@import "home";
|
|
@import "contacts";
|
|
@import "settings";
|
|
|
|
.accept-call-button {
|
|
border-style: none;
|
|
padding: 0;
|
|
background: none;
|
|
color: $brand-success;
|
|
}
|
|
|
|
.flex-inline {
|
|
display: flex-inline;
|
|
justify-content: space-between;
|
|
.accept-call-button {
|
|
margin-right: 1em;
|
|
}
|
|
}
|