8 captures
11 Sep 2019 - 05 Feb 2026
Feb MAR Apr
15
2021 2022 2023
success
fail

About this capture

COLLECTED BY

Organization: Archive Team

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.

The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.

This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.

Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.

The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.

Collection: Archive Team: URLs

TIMESTAMPS

The Wayback Machine - http://web.archive.org/web/20220315223530/https://gitter.im/angular/flex-layout
 

Where communities thrive

 
Join over  1.5M+ people

Join over  100K+ communities

Free  without limits

Create  your own community

Explore more communities














angular/flex-layout  




Discussion Group for Angular Layout ideas, questions, and general problem-solving.
 









People  
Repo info  










































































































































Activity



 























jagdishsinh jadeja

@jagdishjadeja
 

why not flex-layout come to official angular discord ?  













jagdishsinh jadeja

@jagdishjadeja
 

anyone using angular flex layout in server side rendering ?  













Shekhar Ramola

@shekharramola
 

how to reduce a lot of space in here ?  







between cards  













Daniel Willis

@danww
 

Hi there, I've built a site with flex-layout, and because it's a site, rather than an app, I'm using scully.io as a static site generator.
What appears to be a condition of this scenario is that when loading a page in a browser, the content layout initially appears briefly as if it were for a mobile/narrow screen before jumping to its correct layout for the wider screen.
Is this something that has been encountered before, and if so, is there a solution?  













Daniel Willis

@danww
 


Well, I've managed to solve my own problem! The problem is not with flex-layout, but rather with the scully.io config. Or more precisely, the puppeteer renderer configuration. I needed to specify a sufficiently wide viewport. e.g.:
export const config: ScullyConfig = {
  projectRoot: './src',
  projectName: 'site-project-name',
  outDir: './dist/static',
  defaultPostRenderers: [
  ],
  routes: {
  },
  puppeteerLaunchOptions: {
    defaultViewport: {
      width: 1200,
      height: 800,
    }
  }
};

Note the defaultViewport options.
 













Yogesh Manjhi

@yogeshmanjhii
 

Hi guys 







I am new here  







any suggestions from where i can learn angular flex layout  













Michael Prentice

@Splaktar
 

@yogeshmanjhii https://github.com/angular/flex-layout/wiki and https://github.com/angular/flex-layout/tree/master/guides  













Marius 

@mnesser
 


Hi
Trying to add widgets(components) to a dashboard dynamically. Using ComponentFactoryResolver.
Is there a way to set the component host/wrapper width using flex?
Ie@HostBinding('fxFlex') width: string; ?
 













mohamed mamdouh

@moMamdouhSaad
 

hi all  







is fxFlex-gt-md not working on 7.0.0-beta.19  













Daniel Willis

@danww
 

@moMamdouhSaad you mean fxFlex.gt-md rather than fxFlex-gt-md?
 












marquezm2410

@marquezm2410
 

Hello everyone, I would appreciate anyone who can help me, is there a way to tell the node server to render the components in the version, for example: xs, or md, or xl, etc.? Help please, the first painting is a disaster, I have to wait for the full javascript to load for it to detect MathQuery so I can adjust all the code provided for the answer. Thanks in advance!  













Tombalabomba03

@Tombalabomba03
 

Hey, i hope everyone is having a great start of the week! I was wondering how long the css grid feature is still deemed experiemental. It is really convenient when it comes to passing down data and i am considering using it in our webapp. We are already using it in a portion of our page and it works great, but the lack of documentation still prevents us from using it everywhere...  













ol1106

@ol1106
 

where can i find angular dashboard templates using material or bootstrap, and could be responsive?  













Luiz Gabriel Parreira Pereira

@Luizgpp
 

Hello guys  







Someone here?  







I can't undertand how to make work the second exemple for on this https://tburleson-layouts-demos.firebaseapp.com/#/stackoverflow  







Someone can help me please?  







Sorry, third exemple (stackoverflow)  













Duncan

@DuncanFaulkner
 

Have you seen this article on StackOverflow? https://stackoverflow.com/questions/36988183/flex-box-out-of-borders?rq=1  













Luiz Gabriel Parreira Pereira

@Luizgpp
 

I want to do this with flex Layout library  







fxLayout, fxFlex, etc  













Duncan

@DuncanFaulkner
 

@Luizgpp The flex-layout just generates the flexbox as inline styles so you should be able to work back from the examples in the stackover flow link link  













Luiz Gabriel Parreira Pereira

@Luizgpp
 

@DuncanFaulkner Ok, thanks! 













Tombalabomba03

@Tombalabomba03
 

@ol1106 i like https://www.chartjs.org/  













Joshua Immanuel

@joshuaimmanuel
 


Hello everyone, Can we set the fxLayout on child DOM element? I am having trouble with the sibling DOM elements which are below the fxLayout set DOM element.
<div style="height: 400px">
  <div>Top</div>
  <div style="min-width: 300px"
       fxLayout="row"
       fxLayout.xs="column"
       fxFlexFill >

    <div fxFlex="15" style="background-color: red;" fxFlex.xs="55">
      first-section
    </div>
    <div fxFlex="30" style="background-color: yellow" >
      second-section
    </div>
    <div fxFlex="55" style="background-color: blue;" fxFlex.xs="15">
      third-section
    </div>
  </div>
  <div>Bottom</div>
</div>
<div>Lower bottom</div>

In the above snippet the "Lower bottom" div is getting displayed above the "Bottom" div
 













Shubham Thakur

@shubhamt619
 

Hii all  







Anyone here who knows how to implement ORIENTATION_BREAKPOINTS ?  







@shubhamt619
Hii all
Anyone here who knows how to implement ORIENTATION_BREAKPOINTS ?  













goldstardev2002

@goldstardev2002
 

Hello Everyone  







I have problems  







Please help me  







image.png






I made 3 components in my project  







And I'm using flexlayout  







It's correct in header component and kisok-home-page component  







When I import kiosk-nav-bar component in kisok-home-page component,it doesn't correct  







image.png












goldstardev2002

@goldstardev2002
 

I found something strange  







When I use in kiosk-home-page directly it that i used in kiosk-nav-bar ,it's correct  







Please help me  







If u want,I can show u project  







I think it's simple issue but I don't know  







I want to split it  







But flexlayout doesn't work  













goldstardev2002

@goldstardev2002
 

Please help  







me






_