heisbuba commited on
Commit
d1e07e6
·
verified ·
1 Parent(s): db766e2

Update src/templates/base.html

Browse files
Files changed (1) hide show
  1. src/templates/base.html +13 -1
src/templates/base.html CHANGED
@@ -76,7 +76,17 @@ main {
76
  font-size: 1.1rem;
77
  color: var(--accent-green);
78
  }
 
 
 
 
 
 
79
 
 
 
 
 
80
  .icon-btn {
81
  color: var(--text-dim);
82
  text-decoration: none;
@@ -273,7 +283,9 @@ input[type="password"] {
273
  <body>
274
 
275
  <div class="header">
276
- <h1><a href="/">Crypto VAT v4.0</a></h1>
 
 
277
  <div>
278
  <a href="{{ url_for('main.help_page') }}" class="icon-btn">?</a>
279
  {% if session.get('user_id') %}
 
76
  font-size: 1.1rem;
77
  color: var(--accent-green);
78
  }
79
+
80
+ .header h1 > a {
81
+ color: var(--accent-green);
82
+ text-decoration: none;
83
+ cursor: pointer;
84
+ }
85
 
86
+ .header h1 > a:hover {
87
+ opacity: 0.8;
88
+ }
89
+
90
  .icon-btn {
91
  color: var(--text-dim);
92
  text-decoration: none;
 
283
  <body>
284
 
285
  <div class="header">
286
+ <h1>
287
+ <a href="{{ url_for('main.home') }}">Crypto VAT v4.0</a>
288
+ </h1>
289
  <div>
290
  <a href="{{ url_for('main.help_page') }}" class="icon-btn">?</a>
291
  {% if session.get('user_id') %}