mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
92c03bdff2
* Refactoring button styles * renaming buttons * Add Link and Button styles * Update new btn styles and storybook * Fix tests * Change font weight; Update storybook * Fix linter
25 lines
384 B
SCSS
25 lines
384 B
SCSS
.token-list-placeholder {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-top: 36px;
|
|
flex-direction: column;
|
|
line-height: 22px;
|
|
opacity: .5;
|
|
|
|
&__text {
|
|
color: $silver-chalice;
|
|
width: 50%;
|
|
text-align: center;
|
|
margin-top: 8px;
|
|
|
|
@media screen and (max-width: 575px) {
|
|
width: 60%;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
@extend %link;
|
|
margin-top: .5rem;
|
|
}
|
|
}
|