Skip to content

Commit

Permalink
Merge pull request #1627 from SenseNet/fix/content_view_edit_width
Browse files Browse the repository at this point in the history
widen_content_view_edit_page
  • Loading branch information
NoelKova authored Jul 30, 2024
2 parents b4ca119 + 0c5889f commit bdb97c6
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 11 deletions.
Binary file added apps/sensenet/src/assets/sensenet_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/sensenet/src/components/appbar/desktop-app-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useRepository } from '@sensenet/hooks-react'
import { clsx } from 'clsx'
import React, { useContext } from 'react'
import { Link } from 'react-router-dom'
import logo from '../../../../../../sn-client/examples/sn-dms-demo/src/assets/sensenet_white.png'
import logo from '../../assets/sensenet_white.png'
import { ResponsivePersonalSettings } from '../../context'
import { globals, useGlobalStyles } from '../../globalStyles'
import { CommandPalette } from '../command-palette/CommandPalette'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AppBar, Button, Container, createStyles, makeStyles, Theme, Toolbar, Typography } from '@material-ui/core'
import React from 'react'
import { NavLink } from 'react-router-dom'
import logo from '../../../../../../sn-client/examples/sn-dms-demo/src/assets/sensenet_white.png'
import logo from '../../assets/sensenet_white.png'
import { globals, useGlobalStyles } from '../../globalStyles'

const useStyles = makeStyles((theme: Theme) =>
Expand Down
2 changes: 1 addition & 1 deletion apps/sensenet/src/components/login/login-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { PathHelper } from '@sensenet/client-utils'
import { clsx } from 'clsx'
import React, { useRef } from 'react'
import { Link } from 'react-router-dom'
import snLogo from '../../../../../../sn-client/examples/sn-dms-demo/src/assets/sensenet_white.png'
import snLogo from '../../assets/sensenet_white.png'
import { globals, useGlobalStyles } from '../../globalStyles'
import { useLocalization } from '../../hooks'

Expand Down
2 changes: 0 additions & 2 deletions apps/sensenet/src/components/view-controls/common/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ const useStyles = makeStyles(() => {
position: 'relative',
},
field: {
width: '88%',
position: 'relative',
},
fieldFullWidth: {
width: '88%',
position: 'relative',
},
actionButtonWrapper: {
Expand Down
4 changes: 1 addition & 3 deletions packages/sn-controls-react/src/viewcontrols/browse-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const useStyles = makeStyles((theme: Theme) => {
return createStyles({
grid: {
margin: '0 auto',
maxWidth: '750px',
maxWidth: '850px',
},
fieldWrapper: {},
field: {},
Expand All @@ -55,11 +55,9 @@ const useStyles = makeStyles((theme: Theme) => {
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
width: '88%',
margin: '0 auto',
},
divider: {
width: '88%',
height: '1px',
margin: '16px auto',
backgroundColor: theme.palette.primary.main,
Expand Down
4 changes: 1 addition & 3 deletions packages/sn-controls-react/src/viewcontrols/edit-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const useStyles = makeStyles((theme: Theme) => {
return createStyles({
grid: {
margin: '0 auto',
maxWidth: '750px',
maxWidth: '850px',
},
fieldWrapper: {},
field: {},
Expand All @@ -69,11 +69,9 @@ const useStyles = makeStyles((theme: Theme) => {
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
width: '88%',
margin: '0 auto',
},
divider: {
width: '88%',
height: '1px',
margin: '16px auto',
backgroundColor: theme.palette.primary.main,
Expand Down

0 comments on commit bdb97c6

Please sign in to comment.