aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Raes <contact@remyraes.com>2023-10-12 01:20:55 +0200
committerGitHub <noreply@github.com>2023-10-12 01:20:55 +0200
commitd883b543e5d81d783ac6264b44fd18cb2ff6a1e6 (patch)
tree7604b2ebb68405fb1cccdfc41a329bc249793d05
parent89e3e4493914ed2a881dfe5a8eded786b8d1c805 (diff)
downloadFlightCore-d883b543e5d81d783ac6264b44fd18cb2ff6a1e6.tar.gz
FlightCore-d883b543e5d81d783ac6264b44fd18cb2ff6a1e6.zip
fix: Update popup style (#610)
Makes popup dialog windows slightly larger and prevents words from breaking in the middle.
-rw-r--r--src-vue/src/style.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/src-vue/src/style.css b/src-vue/src/style.css
index c66a6248..dfe682bf 100644
--- a/src-vue/src/style.css
+++ b/src-vue/src/style.css
@@ -46,3 +46,11 @@ body {
color: white;
margin: 30px 15px;
}
+
+.el-popper {
+ width: 200px !important;
+}
+
+.el-popconfirm {
+ word-break: break-word;
+}