Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BB-426: fix text overflow on buttons on small screens #378

Merged
merged 6 commits into from
Mar 13, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ function EditionSection({
<Button
block
bsStyle="primary"
id="existing-edition-group-search-button"
MonkeyDo marked this conversation as resolved.
Show resolved Hide resolved
onClick={onEditionGroupButtonClick}
>
Click here to search for an existing one instead
Expand Down
7 changes: 7 additions & 0 deletions src/client/stylesheets/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -409,3 +409,10 @@ hr.wide {
margin-left: 0.2em;
}
}

@media only screen and (max-width: 451px){
#existing-edition-group-search-button{
font-size: calc(3px + 1.6vw);
MonkeyDo marked this conversation as resolved.
Show resolved Hide resolved
padding: 6px 5px;
}
}