From 96151395546edd06ca2695c7674c723d1673712f Mon Sep 17 00:00:00 2001 From: Peter <42907716+MrShack@users.noreply.github.com> Date: Sun, 6 Apr 2025 22:10:46 +0200 Subject: [PATCH] Added styling for birthday member component Introduce new CSS styles to ensure consistent layout and design for the birthday member section. These styles handle width, padding, text alignment, and font styling for improved visual presentation. --- .../src/app/birthdays/birthdays.component.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/frontend/src/app/birthdays/birthdays.component.scss b/frontend/src/app/birthdays/birthdays.component.scss index e69de29..f86f386 100644 --- a/frontend/src/app/birthdays/birthdays.component.scss +++ b/frontend/src/app/birthdays/birthdays.component.scss @@ -0,0 +1,14 @@ +.birthdayMember { + width: 33%; + min-width: 250px; + padding-bottom: 50px; + text-align: center; +} + +.birthdayMember img { + padding-bottom: 15px; +} + +.birthdayMember p { + font-family: 'opensans-bold', sans-serif; +}