소스 검색

refactor: more improvements to components

Kristian Vos 3 년 전
부모
커밋
e6ce5534b4
1개의 변경된 파일15개의 추가작업 그리고 1개의 파일을 삭제
  1. 15 1
      frontend/src/App.vue

+ 15 - 1
frontend/src/App.vue

@@ -733,6 +733,10 @@ table {
 	}
 }
 
+img {
+	max-width: 100%;
+}
+
 .absolute-a {
 	width: 100%;
 	height: 100%;
@@ -1164,6 +1168,8 @@ button.delete:focus {
 
 .button {
 	border: 1px solid #dbdbdb;
+	background-color: #fff;
+	color: #363636;
 	border-radius: 3px;
 	line-height: 24px;
 	align-items: center;
@@ -1207,7 +1213,7 @@ button.delete:focus {
 	&.is-warning {
 		background-color: var(--yellow) !important;
 		border-width: 0;
-		color: white;
+		color: rgba(0, 0, 0, 0.7);
 	}
 }
 
@@ -1238,6 +1244,14 @@ button.delete:focus {
 	resize: vertical;
 }
 
+.icon {
+	height: 24px;
+	width: 24px;
+	line-height: 24px;
+	margin-left: 4px;
+	margin-right: -2px;
+}
+
 .fadein-helpbox-enter-active {
 	transition-duration: 0.3s;
 	transition-timing-function: ease-in;