1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-11 02:37:21 +00:00

Merge pull request from sharelatex/sk-less-border-radius-on-selects-v2

On v2, use smaller (default) border radius on select inputs
This commit is contained in:
Alasdair Smith 2018-05-31 10:10:49 +01:00 committed by GitHub
commit 00808dfc9a

View file

@ -145,10 +145,15 @@ output {
opacity: 1; // iOS fix for unreadable disabled content
}
// Reset height for `textarea`s
// Reset height for `textarea`s, and smaller border-radius
textarea& {
height: auto;
border-radius: @border-radius-base;
}
// Smaller border-radius for `select` inputs
select& {
border-radius: @border-radius-base;
}
}