diff options
author | Rémy Raes <contact@remyraes.com> | 2023-10-12 01:20:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 01:20:55 +0200 |
commit | d883b543e5d81d783ac6264b44fd18cb2ff6a1e6 (patch) | |
tree | 7604b2ebb68405fb1cccdfc41a329bc249793d05 /src-vue/src | |
parent | 89e3e4493914ed2a881dfe5a8eded786b8d1c805 (diff) | |
download | FlightCore-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.
Diffstat (limited to 'src-vue/src')
-rw-r--r-- | src-vue/src/style.css | 8 |
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; +} |