Skip to content

Commit

Permalink
[WebHost] Fix /user-content styles (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
LegendaryLinux authored Apr 4, 2022
1 parent a080288 commit 07ff0f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 0 additions & 8 deletions WebHostLib/static/styles/userContent.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,3 @@
#user-content table.dataTable{
width: unset;
}

table.dataTable thead th{
padding: 0 20px 0 0;
}

table.dataTable tbody td{
padding: 6px 20px 0 0;
}
4 changes: 2 additions & 2 deletions WebHostLib/templates/userContent.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
{{ super() }}
<title>User Content</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/userContent.css") }}" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/userContent.js") }}"></script>
{% endblock %}

{% block body %}
{% include 'header/oceanHeader.html' %}
<div id="user-content-wrapper">
<div id="user-content-wrapper" class="markdown">
<div id="user-content" class="grass-island">
<h1>User Content</h1>
Below is a list of all the content you have generated on this site. Rooms and seeds are listed separately.
Expand Down Expand Up @@ -68,5 +69,4 @@ <h2>Your Seeds</h2>
{% endif %}
</div>
</div>
{% include 'islandFooter.html' %}
{% endblock %}

0 comments on commit 07ff0f1

Please sign in to comment.