create styles for content container

along with content-left and content-right container
This commit is contained in:
Karthik Siddarth 2019-04-15 13:49:51 +05:30
parent 1f253c7ee3
commit dd8dcd7cea

View File

@ -234,4 +234,30 @@ export default Vue.component(name, getVueOptions(name));
} }
} }
.content {
display: flex;
width: 100%;
height: 100%;
&__left,
&__right {
height: 100%;
padding: @base-padding;
}
&__left {
width: @left-column-width;
color: rgba(255, 255, 255, 0.59);
background-color: @accent-color;
.section-headline {
color: white;
}
}
&__right {
flex: 1;
}
}
</style> </style>