signal-desktop/stylesheets/components/InstallScreenChoosingDeviceNameStep.scss

30 lines
498 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-InstallScreenChoosingDeviceNameStep {
2024-11-15 23:09:31 +00:00
@include mixins.install-screen;
2021-12-16 15:02:22 +00:00
2024-11-15 23:09:31 +00:00
& {
text-align: center;
}
2021-12-16 15:02:22 +00:00
&__inputs {
display: flex;
flex-direction: column;
2023-04-20 17:03:43 +00:00
padding-block: 32px 16px;
padding-inline: 0;
2021-12-16 15:02:22 +00:00
align-items: center;
}
&__input {
2024-11-15 23:09:31 +00:00
@include mixins.normal-input;
& {
width: 90%;
max-width: 300px;
margin-bottom: 18px;
}
2021-12-16 15:02:22 +00:00
}
}