Skip to content

Commit

Permalink
Test for line split on collum sections
Browse files Browse the repository at this point in the history
  • Loading branch information
AleixoLucas42 committed Aug 9, 2024
1 parent c51fdd5 commit 66b2be2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
<!-- MY JS -->
<script src="{{url_for('static', filename = 'index.js')}}"></script>
<title>Cards GO!</title>
<style>
.div-separator {
border-right: 1px solid black;
padding: 10px;
}
</style>
</head>

<body style="height: 100vh;">
Expand Down Expand Up @@ -43,22 +49,22 @@
</container>
<div class="uk-container" style="margin-top: 20px;">
<div class="uk-child-width-1-5@s" uk-grid>
<div>
<div class="div-separator">
<h4><span uk-icon="bookmark"></span> To-do</h4>
<div uk-sortable="group: sortable-group" id="Todo">
</div>
</div>
<div>
<div class="div-separator">
<h4><span uk-icon="code"></span> Doing</h4>
<div uk-sortable="group: sortable-group" id="Doing">
</div>
</div>
<div>
<div class="div-separator">
<h4><span uk-icon="lock"></span> Blocked</h4>
<div uk-sortable="group: sortable-group" id="Blocked">
</div>
</div>
<div>
<div class="div-separator">
<h4><span uk-icon="check"></span> Done</h4>
<div uk-sortable="group: sortable-group" id="Done">
</div>
Expand Down

0 comments on commit 66b2be2

Please sign in to comment.