webapp/src/components/_shared/SocialNetworkInput/SocialNetworkInput.module.scss

52 lines
809 B
SCSS
Raw Normal View History

.SocialNetworkInput {
display: flex;
align-items: center;
justify-content: flex-start;
height: 54px;
border: 2px solid var(--black-100);
border-radius: 2px;
.icon {
width: 54px;
height: 54px;
padding: 16px;
border-right: 2px solid var(--black-100);
display: flex;
align-items: center;
justify-content: center;
}
.input {
2024-10-03 09:06:57 +00:00
font-size:1.7rem;
margin: 0 16px;
width: 100%;
border: none;
height: 1em;
padding: 0;
display: block;
flex: 1;
&:focus {
outline: none;
}
&::placeholder {
color: var(--black-300);
}
}
.remove {
width: 54px;
height: 54px;
padding: 16px;
2023-11-13 18:56:47 +00:00
&:hover {
background: var(--background-color-invert);
2023-11-13 18:56:47 +00:00
img {
filter: invert(1);
}
}
}
}