mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
addbf4c62a
There were two existing cases where a footer was added to a popover by putting it in the popover contents. This has been refactored to place the footer in the popover instead, so that styles common to all popover footers could be shared. The popover now has a `section` element instead, giving the `header` and `footer` elements a correct section context.
23 lines
311 B
SCSS
23 lines
311 B
SCSS
.connected-sites {
|
|
&__confirmation {
|
|
button:first-child {
|
|
margin-right: 24px;
|
|
}
|
|
}
|
|
|
|
&__add-site-manually {
|
|
margin-top: -1px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
|
|
& :only-child {
|
|
margin: 0;
|
|
}
|
|
|
|
a, a:hover {
|
|
cursor: pointer;
|
|
color: #037DD6;
|
|
}
|
|
}
|
|
}
|