Skip to content

Commit

Permalink
Fix label style issue (#313)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Oct 30, 2023
1 parent 46d80b9 commit d497469
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 25 deletions.
16 changes: 1 addition & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ mockall = "0.11.4"

[build-dependencies]
anyhow = "1.0.75"
which = "5.0.0"

# The profile that 'cargo dist' will build with
[profile.dist]
Expand Down
8 changes: 0 additions & 8 deletions build.rs
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
use anyhow::{format_err, Result};
use std::process::{Command, Output};
use which::which;

fn main() -> Result<()> {
// Tell Cargo to rerun this build script if the web app changes
println!("cargo:rerun-if-changed=web/src");
println!("cargo:rerun-if-changed=web/static");
println!("cargo:rerun-if-changed=web/index.html");

// Check if required external tools are available
if which("yarn").is_err() {
return Err(format_err!(
"yarn not found in PATH (it is required to build the web application)"
));
}

// Build web application
let error = |cmd: &str, output: Output| {
Err(format_err!(
Expand Down
2 changes: 1 addition & 1 deletion web/src/layout/common/itemModal/MobileContent.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

.badges {
font-size: 85%;
height: 20px;
height: 22px;
}

.link {
Expand Down

0 comments on commit d497469

Please sign in to comment.