Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/storybook-react/src/stories/prototype-src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,11 @@ input:checked:hover + .utrecht-font-tester-toggle-slider {

.utrecht-social-media-icon {
--utrecht-icon-size: var(--utrecht-link-social-icon-size);
--utrecht-button-primary-action-background-color: var(--utrecht-color-blue-35);
--_utrecht-button-hover-background-color: #2964a3;

align-items: center;
background-color: #c00; /* Verkort van #cc0000 */
background-color: var(--utrecht-button-primary-action-background-color);
block-size: 44px; /* Gebruik block-size ipv height */
border-radius: 50%;
color: white;
Expand All @@ -433,6 +435,10 @@ input:checked:hover + .utrecht-font-tester-toggle-slider {
transition: background-color 300ms ease; /* Geen 's' unit */
}

.utrecht-social-media-icon:hover {
background-color: var(--_utrecht-button-hover-background-color);
}

/* Responsive design - FIXED */
@media (width <= 768px) {
/* Moderne syntax */
Expand Down