mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-09-20 08:45:21 +01:00
29 lines
507 B
SCSS
29 lines
507 B
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
@use '../mixins';
|
|
|
|
.AvatarTextEditor {
|
|
&__input {
|
|
background: transparent;
|
|
border: none;
|
|
color: inherit;
|
|
padding: 0;
|
|
text-align: center;
|
|
transition: font-size 30ms linear;
|
|
width: 100%;
|
|
|
|
&:focus-visible {
|
|
@include mixins.axo-focus-ring;
|
|
}
|
|
}
|
|
|
|
&__measure {
|
|
inset-inline-start: -9999;
|
|
position: fixed;
|
|
top: -9999;
|
|
touch-action: none;
|
|
visibility: hidden;
|
|
}
|
|
}
|