Reduce width of post view page and removed placeholders in dashboard
This commit is contained in:
@@ -165,7 +165,6 @@
|
||||
<input type="text"
|
||||
id="newsletter-title"
|
||||
name="title"
|
||||
placeholder="Subject"
|
||||
required
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500" />
|
||||
</div>
|
||||
@@ -175,7 +174,6 @@
|
||||
<textarea id="newsletter-html"
|
||||
name="html"
|
||||
rows="6"
|
||||
placeholder="HTML version"
|
||||
required
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 font-mono text-sm"></textarea>
|
||||
</div>
|
||||
@@ -185,7 +183,6 @@
|
||||
<textarea id="newsletter-text"
|
||||
name="text"
|
||||
rows="6"
|
||||
placeholder="Plain text version"
|
||||
required
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 font-mono text-sm"></textarea>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ post.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<div class="max-w-3xl mx-auto">
|
||||
<article>
|
||||
<header class="pb-4 mb-2 border-b-2 border-gray-300 border-dashed">
|
||||
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4 leading-tight">{{ post.title }}</h1>
|
||||
|
||||
Reference in New Issue
Block a user