aboutsummaryrefslogtreecommitdiff
path: root/src/css/_partial/_back-to-top.scss
diff options
context:
space:
mode:
authorpanda-z <panda.hust@gmail.com>2020-04-13 21:18:35 +0800
committerGitHub <noreply@github.com>2020-04-13 21:18:35 +0800
commit5657112dfb0e6eac2faa2ae1dc0978ed29030709 (patch)
treef22279cb587444b0649f95da647b60daf1f370e9 /src/css/_partial/_back-to-top.scss
parentd39d3e443953caea05510b19fdd7a259c71a0ab3 (diff)
chore(build): drop webpack and use Hugo Pipes (#130)
Diffstat (limited to 'src/css/_partial/_back-to-top.scss')
-rw-r--r--src/css/_partial/_back-to-top.scss24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/css/_partial/_back-to-top.scss b/src/css/_partial/_back-to-top.scss
deleted file mode 100644
index ee67aa2..0000000
--- a/src/css/_partial/_back-to-top.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-// ==============================
-// Back to top
-// =============================
-
-.back-to-top {
- display: none;
- position: fixed;
- right: 20px;
- bottom: 20px;
- transition-property: transform;
- transition-timing-function: ease-out;
- transition-duration: 0.3s;
- z-index: 10;
-
- &:hover {
- transform: translateY(-5px);
- }
-}
-
-@include max-screen() {
- .back-to-top {
- display: none !important;
- }
-} \ No newline at end of file