2023-11-09 14:29:48 +00:00
|
|
|
.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;
|
2023-11-09 14:29:48 +00:00
|
|
|
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
|
|
|
|
2023-11-09 14:29:48 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--background-color-invert);
|
2023-11-13 18:56:47 +00:00
|
|
|
|
2023-11-09 14:29:48 +00:00
|
|
|
img {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|