-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
890c6f7
commit 758e187
Showing
3 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<template> | ||
<div class="lightbox__default-loader"> | ||
<div class="lightbox__default-loader__element"></div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
// | ||
} | ||
</script> | ||
|
||
<style> | ||
.lightbox__default-loader { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
z-index: -1; | ||
} | ||
.lightbox__default-loader__element { | ||
animation: LightboxDefaultLoaderAnimation 1s linear infinite; | ||
border: 3px solid #292929; | ||
border-top: 3px solid #fff; | ||
border-radius: 50%; | ||
height: 75px; | ||
width: 75px; | ||
} | ||
@keyframes LightboxDefaultLoaderAnimation { | ||
to { | ||
border-top-color: #fff; | ||
transform: rotate(360deg); | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters