Files
xrpl-dev-portal/styles/_breakpoints.scss
akcodez 44614dba9d Refactor Button Styles for Responsive Design
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.
2025-12-02 12:40:27 -08:00

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
);