added css fill in for subtext, and fixed title bug for admin making posts

This commit is contained in:
rawleyIfowler
2022-03-02 11:14:54 -06:00
parent 8604f5d720
commit d1ef7a095c
2 changed files with 3 additions and 2 deletions

View File

@@ -96,5 +96,6 @@ func CreatePost(c *gin.Context) {
c.HTML(http.StatusOK, "post_success.tmpl", struct { c.HTML(http.StatusOK, "post_success.tmpl", struct {
Url string Url string
Success bool Success bool
}{Url: f.Get("url"), Success: b}) Title string
}{Url: f.Get("url"), Success: b, Title: " | post attempt"})
} }

View File

@@ -118,7 +118,7 @@ a:hover:after {
margin: 12px; margin: 12px;
} }
.subtext { .subtext, .sub-text {
font-size: clamp(0.65em, 0.72em, 0.8em); font-size: clamp(0.65em, 0.72em, 0.8em);
} }