diff options
author | Vitaly Takmazov | 2019-05-31 13:50:43 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 1dd0822760565d645179231bfb9e1d144842b482 (patch) | |
tree | e05da7456398fd7a69e38caff1cd02306453ae59 | |
parent | 086fa7345b3df340dba3769e91f2ba91f1930eeb (diff) |
Remove box shadows
-rw-r--r-- | vnext/src/index.css | 2 | ||||
-rw-r--r-- | vnext/src/ui/Message.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/index.css b/vnext/src/index.css index 9e06c608..4b4c8c87 100644 --- a/vnext/src/index.css +++ b/vnext/src/index.css @@ -100,7 +100,7 @@ hr { #header { grid-area: header; background: #fff; - box-shadow: 0 0 3px rgba(0, 0, 0, 0.28); + border: 1px solid #eee; transition: transform 0.2s; overflow-x: hidden; } diff --git a/vnext/src/ui/Message.css b/vnext/src/ui/Message.css index 58829336..d724703f 100644 --- a/vnext/src/ui/Message.css +++ b/vnext/src/ui/Message.css @@ -37,7 +37,7 @@ } .msg-cont { background: #FFF; - box-shadow: 0 0 3px rgba(0, 0, 0, 0.16); + border: 1px solid #eee; line-height: 140%; margin-bottom: 12px; } |