Conflicts:
app/controllers/authorize_follows_controller.rb
app/javascript/styles/mastodon/components.scss
layout 'modal'
before_action :authenticate_user!
+ before_action :set_pack
+ before_action :set_body_classes
def show
@account = located_account || render(:error)
}
end
+ def set_pack
+ use_pack 'share'
+ end
+
def set_body_classes
- @body_classes = 'compose-standalone'
+ @body_classes = 'modal-layout compose-standalone'
end
end
}
> .mastodon {
- background: url('~images/mastodon-drawer.png') no-repeat left bottom / contain;
- background: url('../images/mastodon-ui.png') no-repeat left bottom / contain;
++ background: url('~images/mastodon-ui.png') no-repeat left bottom / contain;
flex: 1;
}
}