fix(ui): ensure the tool bar is sized at 100% width
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 3 Mar 2024 11:06:41 +0000 (12:06 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 3 Mar 2024 11:06:41 +0000 (12:06 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/App.vue
ui/web/src/components/buttons/Button.vue
ui/web/src/components/buttons/ReloadButton.vue
ui/web/src/views/ChargingStationsView.vue

index 48076e62aea7892da94db200784550e3ac8b6ea8..25aa3a702283cc8dab16bf129ae69098ce3468dc 100644 (file)
@@ -12,8 +12,8 @@ import Container from '@/components/Container.vue'
 <style>
 #app {
   height: fit-content;
-  width: fit-content;
-  font-family: Avenir, Helvetica, Arial, sans-serif;
+  width: 100%;
+  font-family: Tahoma, 'Arial Narrow', Arial, Helvetica, sans-serif;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   display: flex;
@@ -23,7 +23,6 @@ import Container from '@/components/Container.vue'
 }
 
 #action-container {
-  min-width: max-content;
   display: flex;
   flex-direction: column;
   justify-content: center;
index 303c93f4d64fc8f4c34f087e8396dc2e9078080c..9d99cdb4e8cf424bbf1a87e9763d448b7cf29319 100644 (file)
@@ -10,5 +10,6 @@
   flex: auto;
   justify-content: center;
   align-items: center;
+  font: small-caption;
 }
 </style>
index b5387045fcc32ec8bf5b1366c9f6c2bafe470445..385e145462d369744e1757b04f9c48abca4a82c0 100644 (file)
@@ -23,9 +23,6 @@ defineProps<{
 }
 
 .spin {
-  animation-name: rotation;
-  animation-duration: 2s;
-  animation-iteration-count: infinite;
-  animation-timing-function: linear;
+  animation: rotation 2s linear infinite;
 }
 </style>
index 2b9695e43702801a36428e7235cab72eb772f5de..6f589ccc6a8030136f4449ac5de1a2e64daaf78e 100644 (file)
@@ -305,6 +305,7 @@ const stopSimulator = (): void => {
 #ui-server-selector {
   width: 100%;
   background-color: rgb(239, 239, 239);
+  font: small-caption;
   text-align: center;
 }
 
@@ -334,8 +335,7 @@ const stopSimulator = (): void => {
 #reload-button {
   color: ivory;
   background-color: blue;
-  font-size: 1.5rem;
-  font-weight: bold;
+  font-size: 2rem;
 }
 
 #reload-button:hover {