📱 (stacked notes) border top or left

This commit is contained in:
2021-03-13 22:43:26 +01:00
parent 2286bd5d85
commit 4920f6e773

View File

@@ -34,7 +34,14 @@ export default defineComponent({
<style lang="scss" scoped>
.stacked-note {
text-align: left;
border-left: 1px solid rgba(18, 19, 58, 0.2);
border-top: 1px solid rgba(18, 19, 58, 0.2);
padding: 0 1rem;
}
@media screen and (min-width: 769px) {
.stacked-note {
border-top: 0;
border-left: 1px solid rgba(18, 19, 58, 0.2);
}
}
</style>