NextChat-U/app/components/settings.module.scss

35 lines
423 B
SCSS
Raw Normal View History

2023-03-14 01:25:07 +09:00
@import "./window.scss";
.settings {
padding: 20px;
2023-03-22 01:20:32 +09:00
overflow: auto;
2023-03-14 01:25:07 +09:00
}
.settings-title {
font-size: 14px;
font-weight: bolder;
}
2023-03-22 01:20:32 +09:00
.settings-sub-title {
font-size: 12px;
font-weight: normal;
}
2023-03-14 01:25:07 +09:00
.avatar {
cursor: pointer;
2023-03-22 01:20:32 +09:00
}
2023-04-04 02:05:33 +09:00
2023-04-10 00:35:45 +09:00
.password-input-container {
max-width: 50%;
2023-04-04 02:05:33 +09:00
display: flex;
justify-content: flex-end;
.password-eye {
margin-right: 4px;
}
2023-04-10 00:35:45 +09:00
.password-input {
min-width: 80%;
}
2023-04-04 02:05:33 +09:00
}