Commit f4571f7e authored by minseok.park's avatar minseok.park

update stylelint versino

parent 5d9c14c4
This diff is collapsed.
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
"prettier-eslint": "~9.0", "prettier-eslint": "~9.0",
"require-directory": "~2.1", "require-directory": "~2.1",
"require-from-string": "~2.0", "require-from-string": "~2.0",
"stylelint": "~13.3", "stylelint": "^16.8.2",
"stylelint-config-standard": "~20.0", "stylelint-config-standard": "~20.0",
"vinyl-fs": "~3.0" "vinyl-fs": "~3.0"
} }
......
...@@ -202,7 +202,7 @@ ...@@ -202,7 +202,7 @@
.chat .chat-body .message.user { .chat .chat-body .message.user {
align-self: flex-end; align-self: flex-end;
background-color: var(--color-bwg-main); background-color: var(--color-bwg-main);
color:#fff; color: #fff;
} }
.chat .chat-body .message.ai { .chat .chat-body .message.ai {
...@@ -232,7 +232,6 @@ ...@@ -232,7 +232,6 @@
.chat .chat-area textarea { .chat .chat-area textarea {
border: none; border: none;
outline: none; outline: none;
padding: 0;
width: 100%; width: 100%;
height: 55px; height: 55px;
padding: 10px; padding: 10px;
...@@ -268,7 +267,7 @@ ...@@ -268,7 +267,7 @@
transition: 0.3ms ease; transition: 0.3ms ease;
} }
.chat .chat-area .chat-btn-area .send-btn svg{ .chat .chat-area .chat-btn-area .send-btn svg {
margin-left: 2px; margin-left: 2px;
} }
...@@ -280,8 +279,20 @@ ...@@ -280,8 +279,20 @@
} }
@keyframes l5 { @keyframes l5 {
0% {box-shadow: 15px 0 #000, -15px 0 #0002;background: #000 } 0% {
33% {box-shadow: 15px 0 #000, -15px 0 #0002;background: #0002} box-shadow: 15px 0 var(--color-bwg-main), -15px 0 #0072CE20;
66% {box-shadow: 15px 0 #0002,-15px 0 #000; background: #0002} background: var(--color-bwg-main);
100%{box-shadow: 15px 0 #0002,-15px 0 #000; background: #000 } }
33% {
box-shadow: 15px 0 var(--color-bwg-main), -15px 0 #0072CE20;
background: #0072CE20;
}
66% {
box-shadow: 15px 0 #0072CE20, -15px 0 var(--color-bwg-main);
background: #0072CE20;
}
100% {
box-shadow: 15px 0 #0072CE20, -15px 0 var(--color-bwg-main);
background: var(--color-bwg-main);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment