Skip to content

Commit

Permalink
fix: ui
Browse files Browse the repository at this point in the history
  • Loading branch information
arpowers committed Mar 24, 2020
1 parent 6ad4c25 commit 5266acc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions @apps/factor/src/extend/grid-plugin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ export default Vue.extend({
font-size: 0.9em;
font-weight: var(--font-weight-bold, 700);
text-transform: uppercase;
.category {
color: var(--color-primary);
}
}
.title {
color: var(--color-text);
Expand Down
16 changes: 8 additions & 8 deletions @apps/factor/src/extend/single.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div class="extension-single">
<section class="splash">
<div class="content-area header">
<div class="ext-content-area header">
<div class="overlay" />
<div class="content-pad header-pad">
<div class="ext-content-pad header-pad">
<div class="content">
<factor-link class="back" :path="`/${extensionType}s`">
<span>&larr; Back to {{ extensionType == 'theme' ? "Themes" : "Plugins" }}</span>
Expand Down Expand Up @@ -57,11 +57,11 @@
</section>

<section class="information">
<div class="content-area lightshots">
<div class="content-pad" />
<div class="ext-content-area lightshots">
<div class="ext-content-pad" />
</div>
<div class="content-area blocks">
<div class="content-pad">
<div class="ext-content-area blocks">
<div class="ext-content-pad">
<div v-for="(block, i) in infoItems" :id="block" :key="i" class="block-grid">
<div class="title">{{ toLabel(block) }}</div>
<div class="info" :class="block">
Expand Down Expand Up @@ -292,7 +292,7 @@ export default Vue.extend({
position: absolute;
left: -9999px;
}
.content-area {
.ext-content-area {
&.install {
padding: 2rem;
z-index: 10;
Expand All @@ -302,7 +302,7 @@ export default Vue.extend({
position: relative;
}
}
.content-pad {
.ext-content-pad {
max-width: 1100px;
margin: 0 auto;
}
Expand Down
2 changes: 1 addition & 1 deletion @plugins/plugin-forum/topic-single.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ export default Vue.extend({
}
}
.content-area {
.topic-single .content-area {
display: grid;
grid-template-columns: 2fr 200px;
grid-template-areas: "topic-content topic-sidebar";
Expand Down

0 comments on commit 5266acc

Please sign in to comment.