nitro-react/src/views/avatar-editor/AvatarEditorView.scss

52 lines
1.0 KiB
SCSS
Raw Normal View History

2021-05-12 11:23:15 +02:00
.nitro-avatar-editor {
2021-07-19 19:26:54 +02:00
width: 600px;
2021-05-12 11:23:15 +02:00
.content-area {
2021-07-19 19:26:54 +02:00
height: 330px;
max-height: 330px;
}
.figure-preview-container {
position: relative;
height: 100%;
background-color: $pale-sky;
overflow: hidden;
z-index: 1;
.avatar-image {
margin: 45px auto 0;
z-index: 2;
}
.arrow-container {
position: absolute;
width: 100%;
margin: 0 auto;
display: flex;
justify-content: center;
bottom: 12px;
z-index: 3;
.icon {
cursor: pointer;
}
.arrow-left-icon {
margin-right: 10px;
}
}
&:after {
position: absolute;
content: '';
top: 75%;
bottom: 0;
left: 0;
right: 0;
border-radius: 50%;
background-color: red;
transform: scale(2);
}
2021-05-12 11:23:15 +02:00
}
}