aboutsummaryrefslogtreecommitdiff
path: root/doc/docs/.vuepress/theme/styles/arrow.styl
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs/.vuepress/theme/styles/arrow.styl')
-rw-r--r--doc/docs/.vuepress/theme/styles/arrow.styl22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/docs/.vuepress/theme/styles/arrow.styl b/doc/docs/.vuepress/theme/styles/arrow.styl
new file mode 100644
index 0000000..20bffc0
--- /dev/null
+++ b/doc/docs/.vuepress/theme/styles/arrow.styl
@@ -0,0 +1,22 @@
1@require './config'
2
3.arrow
4 display inline-block
5 width 0
6 height 0
7 &.up
8 border-left 4px solid transparent
9 border-right 4px solid transparent
10 border-bottom 6px solid $arrowBgColor
11 &.down
12 border-left 4px solid transparent
13 border-right 4px solid transparent
14 border-top 6px solid $arrowBgColor
15 &.right
16 border-top 4px solid transparent
17 border-bottom 4px solid transparent
18 border-left 6px solid $arrowBgColor
19 &.left
20 border-top 4px solid transparent
21 border-bottom 4px solid transparent
22 border-right 6px solid $arrowBgColor