diff --git a/src/pages/workouts/Feed.vue b/src/pages/workouts/Feed.vue index b9d691c..e2ef83c 100644 --- a/src/pages/workouts/Feed.vue +++ b/src/pages/workouts/Feed.vue @@ -47,104 +47,63 @@ initWorkouts(); - - \ No newline at end of file + flex-direction: column; + align-items: center; + justify-content: center; +} + +.news-item { + display: flex; + flex-direction: column; + padding: 1rem; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); + transition: transform 0.2s ease-in-out; + width: 100%; +} + +.news-item-header { + cursor: pointer; + display: flex; + justify-content: space-between; + +} +.news-item-icon { + cursor: pointer; +} + + +.news-item h3 { + font-weight: bold; + color: #3d3d3d; +} + +.metadata { + border-top: #9c9a9a 1px solid; +} + +.metadata li { + list-style: none; + display: inline-block; + margin-left: 1rem; +} + +.metadata span { + font-size: 0.9em; + opacity: 0.7; +} + + \ No newline at end of file diff --git a/src/pages/workouts/components/WorkoutListItem.vue b/src/pages/workouts/components/WorkoutListItem.vue index 8eb89d7..10f19a2 100644 --- a/src/pages/workouts/components/WorkoutListItem.vue +++ b/src/pages/workouts/components/WorkoutListItem.vue @@ -3,8 +3,13 @@

{{ item.name }}

- - +