60e96f446e
* Add CopyToClipboard action in websiteWidgetCode component * Fix codeclimate issues
42 lines
611 B
SCSS
42 lines
611 B
SCSS
.loading-state {
|
|
padding: $space-jumbo $space-smaller;
|
|
|
|
.message {
|
|
color: $color-gray;
|
|
display: block;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.spinner {
|
|
float: none;
|
|
top: -$space-smaller;
|
|
}
|
|
}
|
|
|
|
// EMPTY STATES
|
|
.empty-state {
|
|
padding: $space-jumbo $space-smaller;
|
|
|
|
.title,
|
|
.message {
|
|
display: block;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
font-size: $font-size-giga;
|
|
font-weight: $font-weight-feather;
|
|
}
|
|
|
|
.message {
|
|
color: $color-gray;
|
|
margin: $space-normal auto;
|
|
width: 90%;
|
|
}
|
|
|
|
.button {
|
|
margin-top: $space-medium;
|
|
}
|
|
}
|