From 90a432e3f2ba879b013fa29bc50315b3f5f9eb14 Mon Sep 17 00:00:00 2001 From: Eugen Ciur <eugen@papermerge.com> Date: Sat, 2 Oct 2021 07:30:35 +0200 Subject: [PATCH] style all buttons with border-radius = 0 --- app/components/tag/new.hbs | 2 +- app/styles/app.scss | 1 + app/styles/button.scss | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 app/styles/button.scss diff --git a/app/components/tag/new.hbs b/app/components/tag/new.hbs index d1ef3ed..865a831 100644 --- a/app/components/tag/new.hbs +++ b/app/components/tag/new.hbs @@ -1,5 +1,5 @@ <button class="btn btn-success" type="button" {{on "click" this.onToggleNew}}> - New + <i class="bi bi-plus-lg mx-1"></i>New </button> {{#if this.form_visible}} diff --git a/app/styles/app.scss b/app/styles/app.scss index 37c0cc7..9eca56c 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -1,5 +1,6 @@ @import "node_modules/bootstrap/scss/bootstrap"; @import "./tag"; +@import "./button"; main { diff --git a/app/styles/button.scss b/app/styles/button.scss new file mode 100644 index 0000000..b567265 --- /dev/null +++ b/app/styles/button.scss @@ -0,0 +1,3 @@ +button { + border-radius: 0px !important; +} \ No newline at end of file -- GitLab