From 34d941a42d6c05697435f3428fd14b5009ce4e6d Mon Sep 17 00:00:00 2001 From: Rumen Petrov Date: Fri, 22 Nov 2024 18:39:31 +0200 Subject: [PATCH] Challenge 10 meeting notes --- src/content/challenges/10.mdx | 12 +++++++++--- src/content/pages/home.mdx | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/content/challenges/10.mdx b/src/content/challenges/10.mdx index 4fbafd3..66b8c03 100644 --- a/src/content/challenges/10.mdx +++ b/src/content/challenges/10.mdx @@ -5,8 +5,8 @@ title: 'Scroll to section' description: '' pubDate: 'Dec 01 2024' heroImage: '/blog-placeholder-0.jpg' -winner: 'TBA' -mvp: 'TBA' +winner: 'gdespolov' +mvp: 'gdespolov' --- import Special from '@src/components/Special.astro'; import Winner from '@src/components/Winner.astro'; @@ -38,7 +38,13 @@ import Section from '@src/components/Section.astro';
### Discussion topics - TBA + - modern vs legacy scrollbar customizations + - horizontal overflow + - alternatives to fixed with related to content + - css-only active state + - fixed headers and reusing the height + - popover API and anchor positing API + - no prefixes for box-shadow
diff --git a/src/content/pages/home.mdx b/src/content/pages/home.mdx index f5a5816..fada722 100644 --- a/src/content/pages/home.mdx +++ b/src/content/pages/home.mdx @@ -6,7 +6,7 @@ import Section from '@src/components/Section.astro'; import { LeaderboardEntry } from '@src/consts'; export const asavov = new LeaderboardEntry({ wins: 3, mvp: 3 }); -export const gdespolov = new LeaderboardEntry({ wins: 6, mvp: 6 }); +export const gdespolov = new LeaderboardEntry({ wins: 7, mvp: 7 });
## What is this?