Fix button width on large screen

This commit is contained in:
Chrystian Huot 2020-01-09 08:36:37 -05:00
parent 5fdcfb1dcb
commit e36e510ecd

View file

@ -125,6 +125,7 @@
box-shadow: 2px 2px 4px rgb(0, 0, 0) inset, 1px 1px 2px 1px rgb(255, 255, 255);
box-sizing: border-box;
color: rgba(0, 0, 0, .8);
cursor: default;
display: block;
font-size: 14px;
font-weight: 400;
@ -326,6 +327,7 @@
}
@media (min-width: 720px) {
.rdio-select {
.rdio-button {
width: calc(20% - 8px);
}
@ -334,8 +336,10 @@
width: calc(10% - 8px);
}
}
}
@media (min-width: 1200px) {
.rdio-select {
.rdio-button {
width: calc(10% - 8px);
}
@ -345,3 +349,4 @@
}
}
}
}