signal-desktop/stylesheets/components/InstallScreenErrorStep.scss

25 lines
424 B
SCSS
Raw Normal View History

2021-12-16 15:02:22 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
2021-12-16 15:02:22 +00:00
.module-InstallScreenErrorStep {
2024-11-15 23:09:31 +00:00
@include mixins.install-screen;
& {
flex-direction: column;
padding-inline: 2rem;
text-align: center;
}
2021-12-16 15:02:22 +00:00
&__buttons {
margin-top: 1rem;
.module-Button {
2023-04-20 17:03:43 +00:00
margin-inline-start: 1rem;
2021-12-16 15:02:22 +00:00
&:first-child {
2023-04-20 17:03:43 +00:00
margin-inline-start: 0;
2021-12-16 15:02:22 +00:00
}
}
}
}