Skip to content

Commit

Permalink
fix(labware-library): fix CSS in link button (#16351)
Browse files Browse the repository at this point in the history
closes RQA-3170
  • Loading branch information
shlokamin authored Sep 25, 2024
1 parent 786e2bd commit 8e55b8c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions labware-library/src/labware-creator/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,24 @@

.labware_creator .labware_guide_button {
/* from legacy --linkb-tn */
display: block;
width: 100%;
display: inline-block;
width: auto;
margin: 1.5rem 0 0.5rem;
padding: 1rem;
padding: 1rem 2rem;
border-radius: 3px;
background-color: var(--c-blue);
font-size: var(--fs-body-2);
text-align: center;
color: white;
font-family: 'AkkoPro-Regular', 'Ropa Sans', 'Open Sans', sans-serif;
text-transform: uppercase;
cursor: pointer;

&:visited {
color: white;
}

&:hover {
background-color: #00f;
}
}

.start_creating_btn:focus {
Expand Down

0 comments on commit 8e55b8c

Please sign in to comment.