Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/apps/accounts/src/lib/assets/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ReactComponent as WearableIcon } from './wearable.svg'
import { ReactComponent as FinancialInstitutionIcon } from './Financial Institution.svg'
import { ReactComponent as OtherServiceProviderIcon } from './other_service_provider.svg'
import { ReactComponent as TelevisionServiceProviderIcon } from './Television.svg'
import { ReactComponent as MobileCarierServiceProviderIcon } from './Mobile Carrier.svg'
import { ReactComponent as MobileCarrierServiceProviderIcon } from './Mobile Carrier.svg'
import { ReactComponent as InternetServiceProviderIcon } from './Internet Service Provider.svg'
import { ReactComponent as SubscriptionsIcon } from './subscription.svg'

Expand All @@ -18,7 +18,7 @@ export {
DesktopIncon,
FinancialInstitutionIcon,
InternetServiceProviderIcon,
MobileCarierServiceProviderIcon,
MobileCarrierServiceProviderIcon,
LaptopIcon,
OtherDeviceIcon,
OtherServiceProviderIcon,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
align-self: flex-start;
width: 64px;
height: 64px;

svg {
margin: auto;
}
}

.actionElements {
Expand All @@ -36,10 +40,37 @@
}
}

.deviceForm {
.formWrap {
display: grid;
grid-template-columns: 1fr 1fr;
margin: $sp-4 0;
margin: $sp-13 0 $sp-4;

@include ltelg {
grid-template-columns: 1fr;

p {
margin-bottom: $sp-4;
}
}

&.formNoTop {
margin-top: 0;
}

.formCTAs {
display: flex;
align-items: center;

svg {
width: 14px;
height: 14px;
margin-right: $sp-1;
}

.ctaBtnCancel {
margin-left: $sp-8;
}
}
}
}
}
Loading