Unverified Commit 132912c5 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub

Merge pull request #5410 from paulkaplan/studio-info-cleanup

Minor style cleanups for studio page
parents 8bc026a9 44c51a7d
......@@ -19,7 +19,7 @@ const StudioFollow = ({
handleFollow
}) => {
if (!canFollow) return null;
const fieldClassName = classNames('button', {
const fieldClassName = classNames('button', 'studio-follow-button', {
'mod-mutating': isMutating
});
return (
......
......@@ -23,7 +23,6 @@ const StudioReport = ({
handleSubmit
}) => (
<div>
<h3>Reporting</h3>
{canReport && (
<button onClick={handleOpen}><FormattedMessage id="general.report" /></button>
)}
......
......@@ -13,6 +13,8 @@ $radius: 8px;
min-width: auto;
margin: 50px auto;
display: block;
padding-top: 40px;
/* WAT Why does everything center at smaller widths??!! */
@media #{$intermediate-and-smaller} {
& {
......@@ -67,16 +69,29 @@ $radius: 8px;
}
.studio-title {
font-size: 28px;
font-weight: 500;
font-weight: 700;
}
.studio-title:disabled {
padding: 0;
margin: 0;
}
.studio-description:disabled {
background: $ui-blue-10percent;
}
.studio-follow-button {
padding-top: 14px;
padding-bottom: 14px;
font-size: 14px;
margin: 0;
}
}
.studio-tab-nav {
border-bottom: 1px solid $active-dark-gray;
padding-bottom: 8px;
font-size: 14px;
li { background: rgba(0, 0, 0, 0.15); }
.active > li { background: $ui-blue; }
}
......@@ -117,7 +132,7 @@ $radius: 8px;
}
.studio-project-bottom {
display: flex;
padding: 10px 6px 10px 12px;
padding: 6px 4px 6px 10px;
justify-content: space-between;
}
.studio-project-avatar {
......@@ -308,6 +323,10 @@ $radius: 8px;
justify-content: space-between;
padding-top: 20px;
padding-bottom: 10px;
h2 {
font-size: 28px;
}
}
.studio-compose-container {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment