Quick fixes

This commit is contained in:
Matthias 2020-10-05 17:59:46 +00:00
parent 602a5cb3e1
commit f00044009f
3 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ textarea.thought {
font-family: inherit;
}
.thought.extended_text {
.thought#extended_text {
resize: vertical;
}

View File

@ -6,7 +6,7 @@
<title>Thoughts</title>
{% load static %}
<link href="{% static 'main/main.css' %}" rel="stylesheet">
<link href="{% static 'main/main.css' %}?_=1" rel="stylesheet">
<link rel="icon" sizes="192x192" href="{% static 'images/favicon-192x192.png'%}">
<link rel="apple-touch-icon" href="{% static 'images/apple-touch-icon.png'%}"/>

View File

@ -6,8 +6,8 @@
<title>Post</title>
{% load static %}
<link href="{% static 'main/main.css' %}" rel="stylesheet">
<link href="{% static 'main/post.css' %}" rel="stylesheet">
<link href="{% static 'main/main.css' %}?_=0" rel="stylesheet">
<link href="{% static 'main/post.css' %}?_=0" rel="stylesheet">
<link rel="icon" sizes="192x192" href="{% static 'images/favicon-192x192.png'%}">
<link rel="apple-touch-icon" href="{% static 'images/apple-touch-icon.png'%}"/>
@ -15,7 +15,7 @@
<body>
<header><a href="/" class="text" style="border: none">Thoughts</a> <span class="text">Post</span></header>
<section class=".main-wrap">
<section class="main-wrap">
<form action="{% url 'post'%}" method="post">
{% csrf_token %}
<textarea name="text" id="text" class="thought" rows="3"></textarea>