Skip to content

Commit

Permalink
Css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
awallenfang committed Jan 19, 2025
1 parent c28098d commit 81be749
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions space/templates/space/components/people_list.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% load static %}

<div class="col gap-small pt-1 pb-2">
<div class="col gap-small pt-1 pb-2 align-center">
{% for person in joined_people %}
<div class="p-05 background-mid border-radius-05 row justify-between">
<div class="p-05 background-mid border-radius-05 row justify-between w-80p h-3">
<b>{{person.auth_user.username}}</b>
{% if selected_space.owner == person %}
<span>Owner</span>
Expand Down
2 changes: 1 addition & 1 deletion space/templates/space/space.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% block content %}
<div class="p-1 background-light border-radius-1">

<form action="{% url 'space:space_view' space.id %}" method="post" class="col flex-aline-base gap-medium" id="space-form">
<form action="{% url 'space:space_view' space.id %}" method="post" class="col align-start gap-medium" id="space-form">
{% csrf_token %}
<div class="row justify-center"><h2>Space Settings and Information</h2></div>
<label for="space-name"><b>Name:</b></label>
Expand Down
2 changes: 1 addition & 1 deletion todos/templates/todos/components/recurrency_editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
<div class="vertical-line" style="background-color: var(--mid-bg)"></div>
<div class="col p-1 gap-small">
<div class="col p-05 maxh-15 gap-small">
<div class="col p-05 gap-small">
<div class="col align-stretch p-05 gap-small">
<div class="row align-stretch justify-between background-mid p-05 border-radius-025">
<p>Empty space</p>
<input class="user-add-check" type="checkbox" name="-1_checked" id="-1" change="userChecked(event)">
Expand Down
10 changes: 5 additions & 5 deletions todos/templates/todos/components/todo_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
hx-swap="outerHTML"
class="collapsible-container">
{% csrf_token %}
<div class="todo">
<div class="todo-header">
<div >
<div class="row gap-medium p-05 w-30vw minw-20 background-light justify-between border-radius-05 h-3 font-w-600">
<div class="w-100p row gap-medium justify-between">
<div class="row gap-medium">
<img src="{% static 'todos/assets/drag.svg' %}" class="todo-drag-handle" draggable="false">
<input type="text" value="{{ todo.name }}" name="todo_name" class="form-text-input">
</div>
Expand All @@ -21,13 +21,13 @@
</div>
</div>
<div class="background-light w-30vw minw-20 h-20 p-1 dropdown-open">
<div class="row justify-between">
<div class="row justify-between align-start">
<div>

<textarea name="todo_description" rows="10" cols="20">{{todo.description}}</textarea>
</div>

<div class="todo-additional-info">
<div class="col gap-small">
<input type="submit" value="Save" class="button">

<a class="button"
Expand Down

0 comments on commit 81be749

Please sign in to comment.