mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-12-06 17:27:57 +00:00
Updated button styles to enhance responsiveness across devices by replacing fixed breakpoints with a mixin for the xl breakpoint. Adjusted typography and padding for smaller screens to ensure consistent appearance and usability. Improved comments for clarity on the import order and design tokens.
11 lines
190 B
SCSS
11 lines
190 B
SCSS
// Shared breakpoints for responsive design
|
|
// These values are used by Bootstrap and custom components
|
|
|
|
$grid-breakpoints: (
|
|
xs: 0,
|
|
sm: 576px,
|
|
md: 576px,
|
|
lg: 992px,
|
|
xl: 1280px
|
|
);
|