accounts-frontend/packages/app/components/profile/deleteAccount/deleteAccount.scss
2021-03-26 04:19:04 +01:00

36 lines
603 B
SCSS

@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;
padding-inline-start: 11px;
&:before {
content: '';
position: absolute;
inset-inline-start: 0;
top: 2px;
}
span {
line-height: 16px;
}
}
}