1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/token-details/index.scss
VSaric 2cd242252f
Created "Token details" page (#13216)
* Created new screen/page "Token details"

* Change color in scss

* Modify elements to the latest requirements and added unit tests

* Review requested changes

* Condensing files into one component

* Added unit tests for token details page

* Added redirection when switching networks, added image for a token and update unit tests

* Requested review changes

* Modify index.scss regarding of the requested review

* Delete data-testid's from Typography and token-details-page.js

* Requested review changes
2022-02-16 13:29:39 -03:30

50 lines
767 B
SCSS

.token-details {
&__title {
text-transform: capitalize;
}
&__closeButton {
float: right;
width: 10px;
margin-top: -17px;
margin-inline-end: -8px;
&::after {
font-size: 24px;
content: '\00D7';
color: var(--black);
}
}
&__token-value {
font-size: 32px;
}
&__token-address {
width: 222px;
}
&__copy-icon {
float: right;
margin-inline-start: 62px;
@media screen and (min-width: $break-large) {
margin-inline-start: 112px;
}
}
&__hide-token-button {
width: 319px;
height: 39px;
margin-top: 70px;
@media screen and (min-width: $break-large) {
margin-inline-start: 20px;
}
}
.btn--rounded.btn-primary {
background-color: #fff;
}
}