Skip to content

Commit

Permalink
.adminsquares > * {
Browse files Browse the repository at this point in the history
  border: 1px solid #c9ff23;
  border-radius: 5px;
  padding: 0px;
  flex: 1 1 100px;
  overflow: hidden;
  }

.adminsquares {
  display: flex;
  flex-flow: row wrap; 
  padding: 15px;
  gap: 5px;
  width:100%;
  height: auto;
}


.adminsquares img {
  width: 100%;
}
  • Loading branch information
ricoThaka authored Dec 8, 2024
1 parent 7f36339 commit b5ec321
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,30 @@

<SECTION>
<style>


.adminsquares > * {
border: 1px solid #c9ff23;
border-radius: 5px;
padding: 0px;
flex: 1 1 100px;
flex-grow:1;
overflow: hidden;
transition: all 300ms ease-in-out;

&:hover {
flex-grow: 6.3;

}


}

.adminsquares {
display: flex;
flex-flow: row wrap;

padding: 15px;
gap: 5px;
width:100%;
height: auto;
}

Expand All @@ -24,7 +34,6 @@
width: 100%;
}


</style>
<div class="adminsquares">
{% for post in site.posts %}
Expand Down

0 comments on commit b5ec321

Please sign in to comment.