mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
58 lines
907 B
SCSS
58 lines
907 B
SCSS
.permissions-connect-header {
|
|
display: flex;
|
|
flex: 0;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
width: 92%;
|
|
|
|
&__icon {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.icon-with-fallback__identicon-container,
|
|
.icon-with-fallback__identicon-border {
|
|
height: 64px;
|
|
width: 64px;
|
|
}
|
|
|
|
.icon-with-fallback__identicon-border {
|
|
border: 1px solid $Grey-100;
|
|
}
|
|
|
|
.icon-with-fallback__identicon-container {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
@include H3;
|
|
|
|
text-align: center;
|
|
color: $Black-100;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
&__text,
|
|
&__subtitle {
|
|
@include H6;
|
|
|
|
text-align: center;
|
|
color: $Grey-500;
|
|
}
|
|
|
|
&__text {
|
|
width: 100%;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
margin-top: 8px;
|
|
|
|
/*rtl:ignore*/
|
|
direction: rtl;
|
|
}
|
|
|
|
&__subtitle {
|
|
margin-top: 4px;
|
|
}
|
|
}
|