accounts-frontend/packages/app/components/profile/deleteAccount/deleteAccount.scss

36 lines
603 B
SCSS
Raw Normal View History

@import '~app/components/ui/fonts.scss';
.removableDataRow {
composes: formRow from '~app/components/profile/profileForm.scss';
display: flex;
}
.serviceName {
font-family: $font-family-title;
width: 50%;
color: #444;
}
.serviceContents {
width: 50%;
font-size: 12px;
color: #666;
li {
position: relative;
2021-03-26 08:49:04 +05:30
padding-inline-start: 11px;
&:before {
content: '';
position: absolute;
2021-03-26 08:49:04 +05:30
inset-inline-start: 0;
top: 2px;
}
span {
line-height: 16px;
}
}
}