Skip to content
This repository was archived by the owner on Mar 10, 2024. It is now read-only.

Commit 54eb492

Browse files
author
bhasher
committed
Fix css loading bug in legals documents
1 parent 946a5b3 commit 54eb492

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

src/publics/css/legal.less

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ section{
88
text-align: justify;
99
font-family: helvetica neue,Helvetica,Arial,sans-serif;
1010
font-size: 1.125rem;
11-
}
1211

13-
section h1{
14-
font-size: 2.125rem;
15-
margin-top: 25px;
16-
line-height: 1.4;
17-
}
12+
h1{
13+
font-size: 2.125rem;
14+
margin-top: 25px;
15+
line-height: 1.4;
16+
}
1817

19-
section p{
20-
font-size: 1rem;
21-
margin-bottom: 10px;
22-
}
18+
p{
19+
font-size: 1rem;
20+
margin-bottom: 10px;
21+
}
2322

24-
section a{
25-
color: inherit;
26-
text-decoration: none;
27-
transition: color ease-in-out 0.2s;
28-
}
23+
a{
24+
color: inherit;
25+
text-decoration: none;
26+
transition: color ease-in-out 0.2s;
27+
}
2928

30-
section a:hover{
31-
color: #ddd;
32-
}
29+
a:hover{
30+
color: #ddd;
31+
}
3332

34-
section ul{
35-
margin-left: 20px;
36-
}
33+
ul{
34+
margin-left: 20px;
35+
}
36+
}

src/views/legal/licence.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block title %}CodeWe{% endblock %}
44

55
{% block head %}
6-
<link rel="stylesheet/less" type="text/css" href="/css/legal.less">
6+
<link rel="stylesheet" type="text/css" href="/css/legal.less">
77
{% endblock %}
88

99
{% block corps %}
@@ -19,4 +19,4 @@ <h1>MIT License</h1>
1919
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
2020

2121
</section>
22-
{% endblock %}
22+
{% endblock %}

src/views/legal/privacy.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block title %}CodeWe{% endblock %}
44

55
{% block head %}
6-
<link rel="stylesheet/less" type="text/css" href="/css/legal.less">
6+
<link rel="stylesheet" type="text/css" href="/css/legal.less">
77
{% endblock %}
88

99
{% block corps %}
@@ -91,4 +91,4 @@ <h2>Children's Information</h2>
9191

9292
<p>CodeWe does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.</p>
9393
</section>
94-
{% endblock %}
94+
{% endblock %}

src/views/legal/tos.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block title %}CodeWe{% endblock %}
44

55
{% block head %}
6-
<link rel="stylesheet/less" type="text/css" href="/css/legal.less">
6+
<link rel="stylesheet" type="text/css" href="/css/legal.less">
77
{% endblock %}
88

99
{% block corps %}
@@ -91,4 +91,4 @@ <h1>Contact Us</h1>
9191
<li>By email: [email protected]</li>
9292
</ul>
9393
</section>
94-
{% endblock %}
94+
{% endblock %}

0 commit comments

Comments
 (0)