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 = ({ ...@@ -19,7 +19,7 @@ const StudioFollow = ({
handleFollow handleFollow
}) => { }) => {
if (!canFollow) return null; if (!canFollow) return null;
const fieldClassName = classNames('button', { const fieldClassName = classNames('button', 'studio-follow-button', {
'mod-mutating': isMutating 'mod-mutating': isMutating
}); });
return ( return (
......
...@@ -23,7 +23,6 @@ const StudioReport = ({ ...@@ -23,7 +23,6 @@ const StudioReport = ({
handleSubmit handleSubmit
}) => ( }) => (
<div> <div>
<h3>Reporting</h3>
{canReport && ( {canReport && (
<button onClick={handleOpen}><FormattedMessage id="general.report" /></button> <button onClick={handleOpen}><FormattedMessage id="general.report" /></button>
)} )}
......
...@@ -13,6 +13,8 @@ $radius: 8px; ...@@ -13,6 +13,8 @@ $radius: 8px;
min-width: auto; min-width: auto;
margin: 50px auto; margin: 50px auto;
display: block; display: block;
padding-top: 40px;
/* WAT Why does everything center at smaller widths??!! */ /* WAT Why does everything center at smaller widths??!! */
@media #{$intermediate-and-smaller} { @media #{$intermediate-and-smaller} {
& { & {
...@@ -67,16 +69,29 @@ $radius: 8px; ...@@ -67,16 +69,29 @@ $radius: 8px;
} }
.studio-title { .studio-title {
font-size: 28px; font-size: 28px;
font-weight: 500; font-weight: 700;
}
.studio-title:disabled {
padding: 0;
margin: 0;
} }
.studio-description:disabled { .studio-description:disabled {
background: $ui-blue-10percent; background: $ui-blue-10percent;
} }
.studio-follow-button {
padding-top: 14px;
padding-bottom: 14px;
font-size: 14px;
margin: 0;
}
} }
.studio-tab-nav { .studio-tab-nav {
border-bottom: 1px solid $active-dark-gray; border-bottom: 1px solid $active-dark-gray;
padding-bottom: 8px; padding-bottom: 8px;
font-size: 14px;
li { background: rgba(0, 0, 0, 0.15); } li { background: rgba(0, 0, 0, 0.15); }
.active > li { background: $ui-blue; } .active > li { background: $ui-blue; }
} }
...@@ -117,7 +132,7 @@ $radius: 8px; ...@@ -117,7 +132,7 @@ $radius: 8px;
} }
.studio-project-bottom { .studio-project-bottom {
display: flex; display: flex;
padding: 10px 6px 10px 12px; padding: 6px 4px 6px 10px;
justify-content: space-between; justify-content: space-between;
} }
.studio-project-avatar { .studio-project-avatar {
...@@ -308,6 +323,10 @@ $radius: 8px; ...@@ -308,6 +323,10 @@ $radius: 8px;
justify-content: space-between; justify-content: space-between;
padding-top: 20px; padding-top: 20px;
padding-bottom: 10px; padding-bottom: 10px;
h2 {
font-size: 28px;
}
} }
.studio-compose-container { .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