diff --git a/src/components/comments.js b/src/components/comments.js index a79d5a7..c06a8e7 100644 --- a/src/components/comments.js +++ b/src/components/comments.js @@ -78,7 +78,6 @@ function Comment({ comment, index, onComment, onDelete, onReact, uid }) { {own && ( { onDelete([index]) }} diff --git a/src/components/comments.module.css b/src/components/comments.module.css index 712eef2..3216d9b 100644 --- a/src/components/comments.module.css +++ b/src/components/comments.module.css @@ -18,16 +18,6 @@ color: gainsboro; } -.delete_bttn { - font-size: 15px; - transition: width 0.5s, height 0.5s, ease-in 0.5s; -} - -.delete_bttn:hover { - transition: width 0.5s, height 0.5s, ease-out 0.5s; - color: gainsboro; -} - .comment { margin-left: 10px; margin-right: 30px; diff --git a/src/components/newsEntry.js b/src/components/newsEntry.js index 0d8c1cc..1ec2f82 100644 --- a/src/components/newsEntry.js +++ b/src/components/newsEntry.js @@ -44,7 +44,6 @@ export default function NewsEntry({
{uid === user ? ( { onPostDelete() }} diff --git a/src/components/newsEntry.module.css b/src/components/newsEntry.module.css index 27c2c20..1e94e11 100644 --- a/src/components/newsEntry.module.css +++ b/src/components/newsEntry.module.css @@ -27,11 +27,6 @@ margin: 5px 5px; } -.delete_bttn { - font-size: 15px; - transition: width 0.5s, height 0.5s, ease-in 0.5s; -} - .adminPost { border-left: 4px solid var(--text-color); } diff --git a/src/defaultStyles.css b/src/defaultStyles.css index 76bbb61..9f9fb92 100644 --- a/src/defaultStyles.css +++ b/src/defaultStyles.css @@ -361,6 +361,7 @@ input:focus { border-radius: 6px; cursor: pointer; user-select: none; + transition: width 0.5s, height 0.5s, ease-in 0.2s; } .actions > span:hover {