Decreased subheader disclaimer padding.

This commit is contained in:
DebaucheryLibrarian 2021-03-20 00:15:33 +01:00
parent e301e2184c
commit 6e8af52237
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ export default {
<style lang="scss" scoped>
.disclaimer {
padding: 1rem;
padding: .5rem 1rem;
margin: 0;
color: var(--text-light);
background: var(--warn);

View File

@ -6,9 +6,9 @@ function initUsersActions(store, _router) {
async function fetchUser(context, username) {
const { user } = await graphql(`
query User(
$username: String!
$hasAuth: Boolean!
$userId: Int
$username: String!
) {
user: userByUsername(username: $username) {
id