From 2e7c16abbb429baf0906aacfdc0c2c73aafbfe45 Mon Sep 17 00:00:00 2001 From: yuki540 Date: Tue, 20 Feb 2018 16:30:31 +0900 Subject: [PATCH] =?UTF-8?q?add:=20=E5=85=B1=E9=80=9A=E3=81=AE=E3=82=A2?= =?UTF-8?q?=E3=83=8B=E3=83=A1=E3=83=BC=E3=82=B7=E3=83=A7=E3=83=B3=E3=83=95?= =?UTF-8?q?=E3=82=A1=E3=82=A4=E3=83=AB=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scss/keyframes/common.scss | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/scss/keyframes/common.scss diff --git a/src/scss/keyframes/common.scss b/src/scss/keyframes/common.scss new file mode 100644 index 0000000..ad656fa --- /dev/null +++ b/src/scss/keyframes/common.scss @@ -0,0 +1,8 @@ +@keyframes fadein { + 0% { opacity: 0; } + 100% { opacity: 1; } +} +@keyframes fadeout { + 0% { opacity: 1; } + 100% { opacity: 0; } +}