webapp/src/components/Editor/InlineForm/InlineForm.module.scss

51 lines
818 B
SCSS
Raw Normal View History

.InlineForm {
position: relative;
width: 100%;
.form {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
padding: 6px 11px;
width: 100%;
input {
margin: 0 12px 0 0;
padding: 0;
flex: 1;
border: none;
min-width: 200px;
display: block;
&::placeholder {
color: rgba(#000, 0.3);
}
2023-05-01 18:32:32 +00:00
&:focus {
outline: none;
}
}
}
.linkError {
padding: 6px 11px;
color: red;
font-size: 0.7em;
position: absolute;
bottom: -3rem;
left: 0;
right: 0;
height: 0;
background: #fff;
border: 1px solid #e9e9ee;
border-radius: 2px;
opacity: 0;
transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
&.visible {
height: 32px;
opacity: 1;
}
}
}