mirror of
https://github.com/alexgo-io/ballot.git
synced 2026-01-12 08:54:02 +08:00
90 lines
1.7 KiB
CSS
90 lines
1.7 KiB
CSS
.builder_container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
z-index: 0;
|
|
column-gap: 30px;
|
|
}
|
|
.builder_left {
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
}
|
|
.builder_right {
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
|
|
min-width: 321px;
|
|
}
|
|
|
|
.builder_right_section {
|
|
background-color: rgba(236, 239, 241, 0.3);
|
|
padding: 20px;
|
|
}
|
|
|
|
.builder_option_box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
row-gap: 10px;
|
|
}
|
|
|
|
.builder_option_section {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: rgba(236, 239, 241, 0.6);
|
|
border-radius: 0.375rem;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.builder_option_delete {
|
|
position: absolute;
|
|
right: 0;
|
|
margin-left: "10px";
|
|
border: none !important;
|
|
}
|
|
|
|
/* Extra small devices (portrait phones, less than 576px) */
|
|
@media (max-width: 575.98px) {
|
|
.builder_container {
|
|
flex-direction: column;
|
|
}
|
|
.builder_right {
|
|
min-width: initial;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
/* Small devices (landscape phones, 576px and up) */
|
|
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
.builder_container {
|
|
flex-direction: column;
|
|
}
|
|
.builder_right {
|
|
min-width: initial;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
/* Medium devices (tablets, 768px and up) */
|
|
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
.builder_container {
|
|
flex-direction: column;
|
|
}
|
|
.builder_right {
|
|
min-width: initial;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
/* Large devices (desktops, 992px and up) */
|
|
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
}
|
|
|
|
/* Extra large devices (large desktops, 1200px and up) */
|
|
@media (min-width: 1200px) {
|
|
}
|