Skip to content

Commit

Permalink
justify tvs to flex-start
Browse files Browse the repository at this point in the history
  • Loading branch information
daleinen7 committed Oct 12, 2021
1 parent f237fc2 commit bc21f8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/components/StoriesList/StoriesList.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,11 @@
}

.stories_list {
overflow-x: auto;
width: 100%;
ul {
overflow-x: auto;
width: 100%;
display: flex;
flex-flow: row;
justify-content: center;
max-width: 1200px;
margin: 0 auto;
}
Expand Down
8 changes: 7 additions & 1 deletion static/admin/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@ public_folder: /img

collections:
- name: "story"

label: "Story"
extension: "json"
create: true
folder: "static/stories"
editor:
preview: false
fields:
- { label: "Title", name: "title", widget: "string" }
- {
label: "Title",
name: "title",
widget: "string",
pattern: ["^.{0,10}$", "Must have at least 20 characters"],
}
- { label: "Level", name: "level", widget: "number" }
- { label: "Title Card", name: "title-card", widget: "image" }
- label: "Authors"
Expand Down

0 comments on commit bc21f8e

Please sign in to comment.