| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- @use "@pythnetwork/component-library/theme";
- .priceComponentsCard {
- .toolbar {
- width: 100%;
- display: flex;
- flex-flow: column-reverse nowrap;
- gap: theme.spacing(2);
- padding-bottom: theme.spacing(2);
- @include theme.breakpoint("sm") {
- align-items: center;
- flex-flow: row nowrap;
- padding-bottom: unset;
- }
- .toolbarSection {
- display: flex;
- flex-flow: row nowrap;
- gap: theme.spacing(2);
- &[data-section="search"] {
- @include theme.breakpoint("sm") {
- flex-grow: 1;
- }
- }
- &[data-section="mode"] {
- display: none;
- @include theme.breakpoint("xl") {
- display: block;
- }
- }
- }
- .searchInput {
- flex-grow: 1;
- }
- }
- .table {
- display: none;
- @include theme.breakpoint("xl") {
- display: unset;
- }
- }
- .entityList {
- @include theme.breakpoint("xl") {
- display: none;
- }
- @include theme.breakpoint("sm") {
- dl > *:nth-child(1) {
- order: 1;
- }
- dl > *:nth-child(2) {
- order: 3;
- }
- dl > *:nth-child(3) {
- order: 5;
- }
- dl > *:nth-child(4) {
- order: 2;
- }
- dl > *:nth-child(5) {
- order: 4;
- }
- dl > *:nth-child(6) {
- order: 6;
- }
- dl > *:nth-child(7) {
- order: 8;
- }
- dl > *:nth-child(8) {
- order: 7;
- }
- }
- }
- }
- :export {
- // stylelint-disable-next-line property-no-unknown
- headerHeight: theme.$header-height;
- }
|