Skip to content

Commit

Permalink
Prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler committed May 16, 2024
1 parent ea4c072 commit 92049d5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
6 changes: 4 additions & 2 deletions src/components/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const Header = () => (
<a
className="nav-link active"
href="http://wiki.fluidnc.com/"
target="_blank" rel="noreferrer"
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon icon={faBook as IconDefinition} />{" "}
Documentation
Expand All @@ -27,7 +28,8 @@ const Header = () => (
<a
className="nav-link active"
href="https://github.com/bdring/FluidNC"
target="_blank" rel="noreferrer"
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon icon={faGithub as IconDefinition} /> Github
</a>
Expand Down
39 changes: 19 additions & 20 deletions src/pages/calibrate/CalibratePin.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@

.calibratePin {
.badge {
font-size: 14px;
font-weight: bold;
padding: 12px;
border-radius: var(--bs-border-radius);
height: 100%;
width: 100px;
background-color: rgb(var(--bs-secondary-rgb));
color: white;
}
.badge {
font-size: 14px;
font-weight: bold;
padding: 12px;
border-radius: var(--bs-border-radius);
height: 100%;
width: 100px;
background-color: rgb(var(--bs-secondary-rgb));
color: white;
}

.badgeTriggered {
background-color: rgb(var(--bs-danger-rgb));
color: white;
}
.badgeTriggered {
background-color: rgb(var(--bs-danger-rgb));
color: white;
}

.badgeInactive {
background-color: rgb(var(--bs-success-rgb));
color: white;
}
}
.badgeInactive {
background-color: rgb(var(--bs-success-rgb));
color: white;
}
}

0 comments on commit 92049d5

Please sign in to comment.