1
0
Fork 0
blog/src/components/atoms/Container.module.css

12 lines
163 B
CSS
Raw Normal View History

2018-07-21 13:07:58 +02:00
.container {
2021-03-07 02:48:05 +01:00
width: 100%;
max-width: var(--maxWidthContent);
2019-10-02 13:35:50 +02:00
margin-left: auto;
margin-right: auto;
2018-07-21 13:07:58 +02:00
}
2021-03-07 02:48:05 +01:00
.wide {
2021-03-14 01:34:04 +01:00
composes: container;
2021-03-07 02:48:05 +01:00
max-width: none;
}