Path: blob/main/web/ui/src/features/layout/Page.module.css
5283 views
div.page {1display: flex;2flex-direction: column;3height: 100%;45max-width: 1440px;6margin-left: auto;7margin-right: auto;8}910div.page main {11background-color: #ffffff;12margin: 0px 16px 16px 16px;13padding: 8px;14flex-grow: 1;15box-sizing: border-box;16border: 1px solid #e4e5e6;17border-radius: 3px;1819overflow: auto;20}2122.header {23display: flex;24font-family: 'Roboto', sans-serif;25padding: 24px;26height: 50px;27align-items: center;28}2930.header .icon {31width: 50px;32margin-right: 10px;33}3435.header .icon svg {36height: 35px;37width: 100%;38color: rgba(36, 41, 46, 0.75);39}4041.header h1, .header h2 {42padding: 0px;43margin: 0px;44}4546.header h1 {47font-size: 24px;48font-weight: 400;49color: rgb(36, 41, 46);50margin-bottom: 4px;51}5253.header h2 {54font-size: 14px;55font-weight: 400;56color: rgba(36, 41, 46, 0.75);57}5859606162