Skip to content

Commit ddcad57

Browse files
committed
Update z-index
1 parent 762ecc0 commit ddcad57

File tree

6 files changed

+27
-9
lines changed

6 files changed

+27
-9
lines changed

frontend/dist/index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@
33

44
<head>
55
<meta charset="utf-8">
6+
<meta name="description" content="Simple Go serverless website on Amazon Web Services (AWS)">
7+
<meta name="keywords" content="go, golang, serverless, AWS">
8+
<meta name="author" content="Quy Le <[email protected]>">
69
<title>Go Serverless</title>
710
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet">
811
</head>
912

1013
<body>
1114
<div id="app"></div>
12-
<script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/manifest.js?67612ca86c95b1812c78"></script><script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/vendor.js?0de10196d6099ecc7e77"></script><script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/index.js?124c4caf94a395838637"></script></body>
15+
<script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/manifest.js?de0d8c5f838a56ce60da"></script><script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/vendor.js?0de10196d6099ecc7e77"></script><script type="text/javascript" src="https://s3-ap-southeast-1.amazonaws.com/lnquy-less-go/index.js?e7b9d1c3ebf946c95f8e"></script></body>
1316

1417
</html>

frontend/dist/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/dist/manifest.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/dist/manifest.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/src/App.vue

+17-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<el-menu theme="dark" class="el-menu-demo" mode="horizontal">
44
<el-menu-item index="1"><span style="font-family: 'Satisfy', cursive; font-size: 30px;">Less</span>
55
</el-menu-item>
6-
<a href="https://github.com/lnquy/less" style="position: absolute; right: 20px; top: 20px; color: #bfcbd9; text-decoration: none" target="_blank">Github</a>
6+
<a href="https://github.com/lnquy/less" class="menu-right" target="_blank">Github</a>
77
<div class="centered-menu-block">
88
<el-date-picker v-model="date_picker" type="date" placeholder="Pick a date"></el-date-picker>
99
<el-button type="primary" @click="getTrendingRepos()" :loading="loading">Go!</el-button>
@@ -95,8 +95,10 @@
9595
padding: 20px;
9696
}
9797
98-
.el-menu {
98+
.el-menu,
99+
.el-menu .el-menu-item {
99100
border-radius: 0;
101+
z-index: 3;
100102
}
101103
</style>
102104

@@ -106,6 +108,19 @@
106108
padding-top: 11px;
107109
width: 100%;
108110
text-align: center;
111+
z-index: 1;
112+
}
113+
114+
.menu-right {
115+
position: absolute;
116+
right: 20px;
117+
top: 20px;
118+
color: #bfcbd9;
119+
text-decoration: none;
120+
z-index: 2;
121+
}
122+
.menu-right:hover {
123+
color: #009DFB;
109124
}
110125
111126
.repos-col {

0 commit comments

Comments
 (0)