Browse Source

Merge branch 'polishing' of https://github.com/Musare/MusareNode into polishing

Kristian Vos 4 years ago
parent
commit
9d94e42910
2 changed files with 8 additions and 5 deletions
  1. 7 4
      frontend/App.vue
  2. 1 1
      frontend/dist/index.tpl.html

+ 7 - 4
frontend/App.vue

@@ -200,13 +200,16 @@ body.night-mode {
 
 	.toast {
 		font-weight: 600;
+		background-color: $dark-grey !important;
+		&:last-of-type {
+			background-color: $dark-grey-2 !important;
+		}
+		&:not(:first-of-type) {
+			margin-top: 5px;
+		}
 	}
 }
 
-.toast:not(:first-of-type) {
-	margin-top: 5px;
-}
-
 html {
 	overflow: auto !important;
 	height: 100%;

+ 1 - 1
frontend/dist/index.tpl.html

@@ -47,7 +47,7 @@
 </head>
 <body>
 	<div id="root"></div>
-	<div id="toasts-container">
+	<div id="toasts-container" class="position-right position-bottom">
 		<div id="toasts-content"></div>
 	</div>
 </body>