2016-08-05 4 views

답변

0

너비를 100 %로 설정해 보았습니까? 이것은 나를 위해 일한 :

<Toolbar 
    style={{ 
    position: 'fixed', 
    top: 0, 
    width: '100%' 
    }}> 
// Content 
</Toolbar> 

또는 :

<Toolbar 
    style={{ 
    position: 'fixed', 
    top: 0, 
    left: 0, 
    right: 0, 
    }}> 
// Content 
</Toolbar>