The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-theme/client/imports/components/modal/create-channel.css

66 lines
910 B

.create-channel {
display: flex;
flex-direction: column;
width: 100%;
animation-name: fadeIn;
animation-duration: 1s;
&__wrapper {
overflow-x: hidden;
overflow-y: auto;
height: 100%;
}
&__header,
&__switches,
&__inputs:not(:last-child),
& .rc-input:not(:last-child) {
margin-bottom: var(--create-channel-gap-between-elements);
}
&__title {
padding: 0.25rem 0;
color: var(--create-channel-title-color);
font-size: var(--create-channel-title-text-size);
}
&__description {
padding: 0.25rem 0;
color: var(--create-channel-description-color);
font-size: var(--create-channel-description-text-size);
}
&__switches {
display: flex;
flex-wrap: wrap;
}
& .rc-switch {
width: 100%;
&:not(:last-child) {
margin-bottom: 2rem;
}
}
& .rc-input__icon-svg {
font-size: 1.2rem;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}