This commit is contained in:
Akif9748 2022-08-31 16:06:36 +03:00
commit 6c3fb4c93c
4 changed files with 10 additions and 2 deletions

View File

@ -17,7 +17,7 @@ form {
display: block;
font-weight: 600;
color: #4c4c4c;
width: 500px;
width: 100%;
margin-bottom: 10px;
border: 2px solid #d9d9d9;
}
}

View File

@ -199,4 +199,8 @@ width: 120px;
.dots-menu.active{
display:flex;
}
.content{
width:50%;
}
}

View File

@ -97,6 +97,7 @@
<form id="send" style="width:100%">
<textarea rows="4"
style="
font-family:inherit;
width: 100%;
margin: 10px;
border: 2px solid #e3e3e3;" name="content"></textarea>

View File

@ -3,6 +3,8 @@
<%- include("extra/meta", {title: "Thread list!" }) %>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/css/threads.css" />
<%- include("extra/navbar") %>
@ -17,6 +19,7 @@
<%= thread.title %>
</div>
<div class="box-username">
<a class="btn-danger"><i class="fa-solid fa-trash-can"></i></a>
<%= thread.author.name %> <div class="avatar"><img src="<%=thread.author.avatar %>"> </div>
</div>