Files
xrpl-dev-portal/styles/_breakpoints.scss
akcodez 9f1032c9de 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.
2026-06-08 16:49:40 -07: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
);