| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 |
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
- */
- :root {
- --mdc-layout-grid-margin-desktop: 24px;
- --mdc-layout-grid-gutter-desktop: 24px;
- --mdc-layout-grid-column-width-desktop: 72px;
- --mdc-layout-grid-margin-tablet: 16px;
- --mdc-layout-grid-gutter-tablet: 16px;
- --mdc-layout-grid-column-width-tablet: 72px;
- --mdc-layout-grid-margin-phone: 16px;
- --mdc-layout-grid-gutter-phone: 16px;
- --mdc-layout-grid-column-width-phone: 72px;
- }
- @media (min-width: 840px) {
- .mdc-layout-grid {
- box-sizing: border-box;
- margin: 0 auto;
- padding: 24px;
- padding: var(--mdc-layout-grid-margin-desktop, 24px);
- }
- }
- @media (min-width: 600px) and (max-width: 839px) {
- .mdc-layout-grid {
- box-sizing: border-box;
- margin: 0 auto;
- padding: 16px;
- padding: var(--mdc-layout-grid-margin-tablet, 16px);
- }
- }
- @media (max-width: 599px) {
- .mdc-layout-grid {
- box-sizing: border-box;
- margin: 0 auto;
- padding: 16px;
- padding: var(--mdc-layout-grid-margin-phone, 16px);
- }
- }
- @media (min-width: 840px) {
- .mdc-layout-grid__inner {
- display: flex;
- flex-flow: row wrap;
- align-items: stretch;
- margin: -12px;
- margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2 * -1);
- }
- @supports (display: grid) {
- .mdc-layout-grid__inner {
- display: grid;
- margin: 0;
- grid-gap: 24px;
- grid-gap: var(--mdc-layout-grid-gutter-desktop, 24px);
- grid-template-columns: repeat(12, minmax(0, 1fr));
- }
- }
- }
- @media (min-width: 600px) and (max-width: 839px) {
- .mdc-layout-grid__inner {
- display: flex;
- flex-flow: row wrap;
- align-items: stretch;
- margin: -8px;
- margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2 * -1);
- }
- @supports (display: grid) {
- .mdc-layout-grid__inner {
- display: grid;
- margin: 0;
- grid-gap: 16px;
- grid-gap: var(--mdc-layout-grid-gutter-tablet, 16px);
- grid-template-columns: repeat(8, minmax(0, 1fr));
- }
- }
- }
- @media (max-width: 599px) {
- .mdc-layout-grid__inner {
- display: flex;
- flex-flow: row wrap;
- align-items: stretch;
- margin: -8px;
- margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2 * -1);
- }
- @supports (display: grid) {
- .mdc-layout-grid__inner {
- display: grid;
- margin: 0;
- grid-gap: 16px;
- grid-gap: var(--mdc-layout-grid-gutter-phone, 16px);
- grid-template-columns: repeat(4, minmax(0, 1fr));
- }
- }
- }
- @media (min-width: 840px) {
- .mdc-layout-grid__cell {
- width: calc(33.3333333333% - 24px);
- width: calc(33.3333333333% - var(--mdc-layout-grid-gutter-desktop, 24px));
- box-sizing: border-box;
- margin: 12px;
- margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2);
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- width: auto;
- grid-column-end: span 4;
- }
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- margin: 0;
- }
- }
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-desktop {
- width: calc(8.3333333333% - 24px);
- width: calc(8.3333333333% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-desktop {
- width: auto;
- grid-column-end: span 1;
- }
- }
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-desktop {
- width: calc(16.6666666667% - 24px);
- width: calc(16.6666666667% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-desktop {
- width: auto;
- grid-column-end: span 2;
- }
- }
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-desktop {
- width: calc(25% - 24px);
- width: calc(25% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-desktop {
- width: auto;
- grid-column-end: span 3;
- }
- }
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-desktop {
- width: calc(33.3333333333% - 24px);
- width: calc(33.3333333333% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-desktop {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-desktop {
- width: calc(41.6666666667% - 24px);
- width: calc(41.6666666667% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-desktop {
- width: auto;
- grid-column-end: span 5;
- }
- }
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-desktop {
- width: calc(50% - 24px);
- width: calc(50% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-desktop {
- width: auto;
- grid-column-end: span 6;
- }
- }
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-desktop {
- width: calc(58.3333333333% - 24px);
- width: calc(58.3333333333% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-desktop {
- width: auto;
- grid-column-end: span 7;
- }
- }
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-desktop {
- width: calc(66.6666666667% - 24px);
- width: calc(66.6666666667% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-desktop {
- width: auto;
- grid-column-end: span 8;
- }
- }
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-desktop {
- width: calc(75% - 24px);
- width: calc(75% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-desktop {
- width: auto;
- grid-column-end: span 9;
- }
- }
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-desktop {
- width: calc(83.3333333333% - 24px);
- width: calc(83.3333333333% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-desktop {
- width: auto;
- grid-column-end: span 10;
- }
- }
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-desktop {
- width: calc(91.6666666667% - 24px);
- width: calc(91.6666666667% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-desktop {
- width: auto;
- grid-column-end: span 11;
- }
- }
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-desktop {
- width: calc(100% - 24px);
- width: calc(100% - var(--mdc-layout-grid-gutter-desktop, 24px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-desktop {
- width: auto;
- grid-column-end: span 12;
- }
- }
- }
- @media (min-width: 600px) and (max-width: 839px) {
- .mdc-layout-grid__cell {
- width: calc(50% - 16px);
- width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px));
- box-sizing: border-box;
- margin: 8px;
- margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2);
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- width: auto;
- grid-column-end: span 4;
- }
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- margin: 0;
- }
- }
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-tablet {
- width: calc(12.5% - 16px);
- width: calc(12.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-tablet {
- width: auto;
- grid-column-end: span 1;
- }
- }
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-tablet {
- width: calc(25% - 16px);
- width: calc(25% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-tablet {
- width: auto;
- grid-column-end: span 2;
- }
- }
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-tablet {
- width: calc(37.5% - 16px);
- width: calc(37.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-tablet {
- width: auto;
- grid-column-end: span 3;
- }
- }
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-tablet {
- width: calc(50% - 16px);
- width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-tablet {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-tablet {
- width: calc(62.5% - 16px);
- width: calc(62.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-tablet {
- width: auto;
- grid-column-end: span 5;
- }
- }
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-tablet {
- width: calc(75% - 16px);
- width: calc(75% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-tablet {
- width: auto;
- grid-column-end: span 6;
- }
- }
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-tablet {
- width: calc(87.5% - 16px);
- width: calc(87.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-tablet {
- width: auto;
- grid-column-end: span 7;
- }
- }
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-tablet {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-tablet {
- width: auto;
- grid-column-end: span 8;
- }
- }
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-tablet {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-tablet {
- width: auto;
- grid-column-end: span 8;
- }
- }
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-tablet {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-tablet {
- width: auto;
- grid-column-end: span 8;
- }
- }
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-tablet {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-tablet {
- width: auto;
- grid-column-end: span 8;
- }
- }
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-tablet {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-tablet {
- width: auto;
- grid-column-end: span 8;
- }
- }
- }
- @media (max-width: 599px) {
- .mdc-layout-grid__cell {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- box-sizing: border-box;
- margin: 8px;
- margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2);
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- width: auto;
- grid-column-end: span 4;
- }
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell {
- margin: 0;
- }
- }
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-phone {
- width: calc(25% - 16px);
- width: calc(25% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-1,
- .mdc-layout-grid__cell--span-1-phone {
- width: auto;
- grid-column-end: span 1;
- }
- }
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-phone {
- width: calc(50% - 16px);
- width: calc(50% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-2,
- .mdc-layout-grid__cell--span-2-phone {
- width: auto;
- grid-column-end: span 2;
- }
- }
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-phone {
- width: calc(75% - 16px);
- width: calc(75% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-3,
- .mdc-layout-grid__cell--span-3-phone {
- width: auto;
- grid-column-end: span 3;
- }
- }
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-4,
- .mdc-layout-grid__cell--span-4-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-5,
- .mdc-layout-grid__cell--span-5-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-6,
- .mdc-layout-grid__cell--span-6-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-7,
- .mdc-layout-grid__cell--span-7-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-8,
- .mdc-layout-grid__cell--span-8-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-9,
- .mdc-layout-grid__cell--span-9-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-10,
- .mdc-layout-grid__cell--span-10-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-11,
- .mdc-layout-grid__cell--span-11-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-phone {
- width: calc(100% - 16px);
- width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--span-12,
- .mdc-layout-grid__cell--span-12-phone {
- width: auto;
- grid-column-end: span 4;
- }
- }
- }
- .mdc-layout-grid__cell--order-1 {
- order: 1;
- }
- .mdc-layout-grid__cell--order-2 {
- order: 2;
- }
- .mdc-layout-grid__cell--order-3 {
- order: 3;
- }
- .mdc-layout-grid__cell--order-4 {
- order: 4;
- }
- .mdc-layout-grid__cell--order-5 {
- order: 5;
- }
- .mdc-layout-grid__cell--order-6 {
- order: 6;
- }
- .mdc-layout-grid__cell--order-7 {
- order: 7;
- }
- .mdc-layout-grid__cell--order-8 {
- order: 8;
- }
- .mdc-layout-grid__cell--order-9 {
- order: 9;
- }
- .mdc-layout-grid__cell--order-10 {
- order: 10;
- }
- .mdc-layout-grid__cell--order-11 {
- order: 11;
- }
- .mdc-layout-grid__cell--order-12 {
- order: 12;
- }
- .mdc-layout-grid__cell--align-top {
- align-self: flex-start;
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--align-top {
- align-self: start;
- }
- }
- .mdc-layout-grid__cell--align-middle {
- align-self: center;
- }
- .mdc-layout-grid__cell--align-bottom {
- align-self: flex-end;
- }
- @supports (display: grid) {
- .mdc-layout-grid__cell--align-bottom {
- align-self: end;
- }
- }
- @media (min-width: 840px) {
- .mdc-layout-grid--fixed-column-width {
- width: 1176px;
- width: calc(
- var(--mdc-layout-grid-column-width-desktop, 72px) * 12 +
- var(--mdc-layout-grid-gutter-desktop, 24px) * 11 +
- var(--mdc-layout-grid-margin-desktop, 24px) * 2
- );
- }
- }
- @media (min-width: 600px) and (max-width: 839px) {
- .mdc-layout-grid--fixed-column-width {
- width: 720px;
- width: calc(
- var(--mdc-layout-grid-column-width-tablet, 72px) * 8 +
- var(--mdc-layout-grid-gutter-tablet, 16px) * 7 +
- var(--mdc-layout-grid-margin-tablet, 16px) * 2
- );
- }
- }
- @media (max-width: 599px) {
- .mdc-layout-grid--fixed-column-width {
- width: 368px;
- width: calc(
- var(--mdc-layout-grid-column-width-phone, 72px) * 4 +
- var(--mdc-layout-grid-gutter-phone, 16px) * 3 +
- var(--mdc-layout-grid-margin-phone, 16px) * 2
- );
- }
- }
- .mdc-layout-grid--align-left {
- margin-right: auto;
- margin-left: 0;
- }
- .mdc-layout-grid--align-right {
- margin-right: 0;
- margin-left: auto;
- }
- /*# sourceMappingURL=mdc.layout-grid.css.map*/
|